chore(print): clean up some logs

This commit is contained in:
Elian Doran
2025-10-19 16:35:13 +03:00
parent 64576458b7
commit 76c337602b
2 changed files with 5 additions and 9 deletions

View File

@@ -20,7 +20,6 @@ type View = "desktop" | "mobile" | "print";
function index(req: Request, res: Response) {
const view = getView(req);
console.log("Got view ", view);
const options = optionService.getOptionMap();
//'overwrite' set to false (default) => the existing token will be re-used and validated
@@ -68,7 +67,6 @@ function index(req: Request, res: Response) {
}
function getView(req: Request): View {
console.log("Got ", req.query);
// Special override for printing.
if ("print" in req.query) {
return "print";