Skip to content

Commit

Permalink
remove debugging logger.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfajemisincabinetoffice committed Oct 25, 2023
1 parent 69784fb commit 9514918
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ const buildContactEmailServiceUrlAndSaveDataToSession = (req: Request): URL => {

const getFromUrlAndSaveIt = (request: Request): string => {
const fromURLFromRequest = request.query.fromURL as string;
logger.info(`From URL is: ${fromURLFromRequest}`);
logger.info(`isValidUrl is: ${isValidUrl(fromURLFromRequest)}`);
if (fromURLFromRequest && isValidUrl(fromURLFromRequest)) {
request.session.fromURL = fromURLFromRequest;
return fromURLFromRequest;
Expand Down

0 comments on commit 9514918

Please sign in to comment.