Skip to content

Commit 2d91e4f

Browse files
committed
fix: log if url signing is enabled (not disabled)
1 parent dc0e999 commit 2d91e4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ async function handleRequest(req: Request, info: Deno.ServeHandlerInfo): Promise
7171
if (import.meta.main) {
7272
setupLogs();
7373

74-
if (!config.signKey) {
75-
log.warn("url signing disabled");
74+
if (config.signKey) {
75+
log.info("url signing enabled");
7676
}
7777

7878
log.info(`starting webserver on ${config.hostname}:${config.port}`);

0 commit comments

Comments
 (0)