fix(nestlogged): add colon after formatted scope

This commit is contained in:
Shinwoo PARK 2025-03-27 05:47:46 +09:00
parent dacd228321
commit 3a7c78d1c9

View File

@ -100,5 +100,5 @@ export const yellow = colorIfAllowed(
);
export function formatScope(scopes: (string | string[])[]): string {
return scopes.map((v) => typeof v === 'string' ? v : v.join('.')).join(' -> ') + ' ';
return scopes.map((v) => typeof v === 'string' ? v : v.join('.')).join(' -> ') + ': ';
}