Skip to content

Commit 9f37ad3

Browse files
committed
fix: change context name from debug
1 parent 63b7d06 commit 9f37ad3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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": "@secjs/utils",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "",
55
"license": "MIT",
66
"author": "João Lenon",

src/utils/debug.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Chalk from 'chalk'
55
function format(message: any) {
66
const pid = Chalk.hex('#7059C1')(`[SecJS Debugger] - PID: ${process.pid}`)
77
const timestamp = getTimestamp()
8-
const messageCtx = Chalk.hex('#ffe600')(`[Environment] `)
8+
const messageCtx = Chalk.hex('#ffe600')(`[Utils] `)
99

1010
return `${pid} - ${timestamp} ${messageCtx}${Chalk.hex('#7059C1')(message)}`
1111
}

0 commit comments

Comments
 (0)