From 749c279f200eb85aa363eee07457950621467768 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Thu, 27 Mar 2025 02:58:03 +0900 Subject: [PATCH] feat(nestlogged): add new logger for global logging in nestlogged --- packages/nestlogged/src/internals/utils.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/nestlogged/src/internals/utils.ts b/packages/nestlogged/src/internals/utils.ts index a78179c..03c70bc 100644 --- a/packages/nestlogged/src/internals/utils.ts +++ b/packages/nestlogged/src/internals/utils.ts @@ -1,3 +1,5 @@ +import { Logger } from "@nestjs/common"; + export const notIncludedSymbol = Symbol('notIncluded'); export function includeObjectSync( @@ -95,3 +97,5 @@ export function getItemByPathSync(obj: object, path: string | string[]) { : obj[paths[0]] : undefined; } + +export const logger = new Logger('NestLogged'); \ No newline at end of file