Skip to content

Commit 194fc7e

Browse files
committed
fix: change name in logger
1 parent 8868c6e commit 194fc7e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evolution-api-lite",
3-
"version": "2.1.2-lite",
3+
"version": "2.1.2",
44
"description": "Rest api for communication with WhatsApp",
55
"main": "./dist/main.js",
66
"type": "commonjs",

src/config/logger.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class Logger {
8484
if (configService.get<Log>('LOG').COLOR) {
8585
console.log(
8686
/*Command.UNDERSCORE +*/ Command.BRIGHT + Level[type],
87-
'[Evolution API]',
87+
'[Evolution API Lite]',
8888
Command.BRIGHT + Color[type],
8989
this.instance ? `[${this.instance}]` : '',
9090
Command.BRIGHT + Color[type],
@@ -110,7 +110,7 @@ export class Logger {
110110
typeValue === 'object' ? console.log(/*Level.DARK,*/ value, '\n') : '';
111111
} else {
112112
console.log(
113-
'[Evolution API]',
113+
'[Evolution API Lite]',
114114
this.instance ? `[${this.instance}]` : '',
115115
process.pid.toString(),
116116
'-',

0 commit comments

Comments
 (0)