We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63b7d06 commit 9f37ad3Copy full SHA for 9f37ad3
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@secjs/utils",
3
- "version": "1.5.3",
+ "version": "1.5.4",
4
"description": "",
5
"license": "MIT",
6
"author": "João Lenon",
src/utils/debug.ts
@@ -5,7 +5,7 @@ import Chalk from 'chalk'
function format(message: any) {
const pid = Chalk.hex('#7059C1')(`[SecJS Debugger] - PID: ${process.pid}`)
7
const timestamp = getTimestamp()
8
- const messageCtx = Chalk.hex('#ffe600')(`[Environment] `)
+ const messageCtx = Chalk.hex('#ffe600')(`[Utils] `)
9
10
return `${pid} - ${timestamp} ${messageCtx}${Chalk.hex('#7059C1')(message)}`
11
}
0 commit comments