Skip to content

Commit 93e8c31

Browse files
committed
chore: type message as string
1 parent 8734478 commit 93e8c31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/config/logger.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class LoggerConfiguration {
3737
* @description Output format
3838
*/
3939
private formater = format.printf( ( { level, message, label, timestamp } ) => {
40-
return `${timestamp as string} [${level}] ${message}`;
40+
return `${timestamp as string} [${level}] ${message as string}`;
4141
});
4242

4343
/**

0 commit comments

Comments
 (0)