mirror of
https://github.com/status-im/github-webhook-filter.git
synced 2026-08-31 02:31:08 +00:00
fix: log if url signing is enabled (not disabled)
This commit is contained in:
@@ -71,8 +71,8 @@ async function handleRequest(req: Request, info: Deno.ServeHandlerInfo): Promise
|
||||
if (import.meta.main) {
|
||||
setupLogs();
|
||||
|
||||
if (!config.signKey) {
|
||||
log.warn("url signing disabled");
|
||||
if (config.signKey) {
|
||||
log.info("url signing enabled");
|
||||
}
|
||||
|
||||
log.info(`starting webserver on ${config.hostname}:${config.port}`);
|
||||
|
||||
Reference in New Issue
Block a user