Skip to content
This repository was archived by the owner on Dec 13, 2022. It is now read-only.

Commit 4ada9d5

Browse files
committed
Remove console logs
1 parent 6740ea7 commit 4ada9d5

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

runner/src/server/plugins/engine/helpers.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export function redirectTo(
7272
return h.redirect(targetUrl);
7373
}
7474

75-
console.log("QUACK????", targetUrl);
7675
const url = redirectUrl(request, targetUrl, params);
7776
return h.redirect(url);
7877
}

runner/src/server/plugins/engine/pageControllers/PageControllerBase.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,6 @@ export class PageControllerBase {
217217
defaultLink = link;
218218
return false;
219219
});
220-
console.log("Next link: ", nextLink);
221-
console.log("Default link: ", defaultLink);
222220
return nextLink?.page ?? defaultLink?.page;
223221
}
224222

runner/src/server/plugins/engine/plugin.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ export const plugin = {
211211
) => {
212212
const { path, id } = request.params;
213213
const model = await getForm(id, options.formsApiUrl, modelOptions, id);
214-
console.log("WOOF??", id);
215214

216215
if (model) {
217216
const page = model.pages.find(

0 commit comments

Comments
 (0)