Compare commits

...

4 Commits

Author SHA1 Message Date
d1c05fb9ae 3.1.8
Some checks failed
Default (tags) / security (push) Successful in 31s
Default (tags) / test (push) Failing after 1m2s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-05-20 19:40:31 +00:00
f81971d148 fix(devDependencies): Update devDependencies for tstest and Node types 2025-05-20 19:40:31 +00:00
aa6a27970a 3.1.7
Some checks failed
Default (tags) / security (push) Successful in 26s
Default (tags) / test (push) Failing after 1m3s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-05-20 19:27:01 +00:00
b31d9f0c36 fix(ts_destination_local): Update debug log color: set textColor to pink in DestinationLocal. 2025-05-20 19:27:01 +00:00
5 changed files with 604 additions and 381 deletions

View File

@ -1,5 +1,16 @@
# Changelog # Changelog
## 2025-05-20 - 3.1.8 - fix(devDependencies)
Update devDependencies for tstest and Node types
- Bump @git.zone/tstest from ^1.7.0 to ^1.9.0
- Bump @types/node from ^22.15.18 to ^22.15.20
## 2025-05-20 - 3.1.7 - fix(ts_destination_local)
Update debug log color: set textColor to 'pink' in DestinationLocal.
- Changed debug log text color from 'gray' to 'pink' for improved consistency in log output
## 2025-05-20 - 3.1.6 - fix(ts_destination_local) ## 2025-05-20 - 3.1.6 - fix(ts_destination_local)
Update debug prefix color in DestinationLocal: change from gray to pink for improved visibility. Update debug prefix color in DestinationLocal: change from gray to pink for improved visibility.

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartlog", "name": "@push.rocks/smartlog",
"version": "3.1.6", "version": "3.1.8",
"private": false, "private": false,
"description": "A minimalistic, distributed, and extensible logging tool supporting centralized log management.", "description": "A minimalistic, distributed, and extensible logging tool supporting centralized log management.",
"keywords": [ "keywords": [
@ -45,8 +45,8 @@
"@git.zone/tsbuild": "^2.5.1", "@git.zone/tsbuild": "^2.5.1",
"@git.zone/tsbundle": "^2.2.5", "@git.zone/tsbundle": "^2.2.5",
"@git.zone/tsrun": "^1.3.3", "@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.7.0", "@git.zone/tstest": "^1.9.0",
"@types/node": "^22.15.18" "@types/node": "^22.15.20"
}, },
"dependencies": { "dependencies": {
"@api.global/typedrequest-interfaces": "^3.0.19", "@api.global/typedrequest-interfaces": "^3.0.19",

964
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartlog', name: '@push.rocks/smartlog',
version: '3.1.6', version: '3.1.8',
description: 'A minimalistic, distributed, and extensible logging tool supporting centralized log management.' description: 'A minimalistic, distributed, and extensible logging tool supporting centralized log management.'
} }

View File

@ -94,7 +94,7 @@ export class DestinationLocal implements ILogDestination {
}, },
debug: { debug: {
prefix: plugins.consolecolor.coloredString(' debug ', 'pink', 'black') + ' ', prefix: plugins.consolecolor.coloredString(' debug ', 'pink', 'black') + ' ',
textColor: 'gray', textColor: 'pink',
}, },
error: { error: {
prefix: prefix: