Skip to content
This repository was archived by the owner on Oct 29, 2025. It is now read-only.

Commit 610d3be

Browse files
committed
Changed the console log message for when a calendar is not found during the login part
1 parent c0c164b commit 610d3be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/calendar/[slug]/login/+page.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export async function load({ locals, params }) {
1313
}
1414
});
1515
} catch (err) {
16-
console.log("Calendar not found.");
16+
console.log(`[server] Calendar not found: '${params.slug}'.`);
1717
return redirect(301, "/");
1818
}
1919

0 commit comments

Comments
 (0)