From 768b09b961aaeed7012e5a88f0c4c812f71c94de Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Thu, 20 Mar 2025 18:18:55 +0900 Subject: [PATCH] fix: specify return type of getRequestLogger --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 783ccd9..f93e595 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -4,6 +4,6 @@ import { REQUEST_LOG_ID } from "./logged"; const logger = new Logger(); -export function getRequestLogger(functionName: string, req: any) { +export function getRequestLogger(functionName: string, req: any): ScopedLogger { return new ScopedLogger(logger, [functionName], req[REQUEST_LOG_ID]) } \ No newline at end of file