Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
e6cef68a26 | |||
aa327efeac | |||
7cbc64ed8d | |||
2c49ef49c2 |
11
changelog.md
11
changelog.md
@ -1,5 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
## 2025-05-20 - 3.1.6 - fix(ts_destination_local)
|
||||
Update debug prefix color in DestinationLocal: change from gray to pink for improved visibility.
|
||||
|
||||
- Adjusted the 'debug' log prefix color in classes.destinationlocal.ts to use 'pink' instead of 'gray'.
|
||||
|
||||
## 2025-05-20 - 3.1.5 - fix(core)
|
||||
Maintain and verify project metadata and commit info consistency
|
||||
|
||||
- No code changes; confirming commit info files and documentation remain aligned
|
||||
- Ensured consistent versioning across submodules and package metadata
|
||||
|
||||
## 2025-05-20 - 3.1.4 - fix(DestinationLocal)
|
||||
Fix debug log rendering, add fallback for unknown log levels, and correct error prefix typo in local destination
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@push.rocks/smartlog",
|
||||
"version": "3.1.4",
|
||||
"version": "3.1.6",
|
||||
"private": false,
|
||||
"description": "A minimalistic, distributed, and extensible logging tool supporting centralized log management.",
|
||||
"keywords": [
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/smartlog',
|
||||
version: '3.1.4',
|
||||
version: '3.1.6',
|
||||
description: 'A minimalistic, distributed, and extensible logging tool supporting centralized log management.'
|
||||
}
|
||||
|
@ -93,7 +93,7 @@ export class DestinationLocal implements ILogDestination {
|
||||
textColor: 'blue',
|
||||
},
|
||||
debug: {
|
||||
prefix: plugins.consolecolor.coloredString(' debug ', 'gray', 'black') + ' ',
|
||||
prefix: plugins.consolecolor.coloredString(' debug ', 'pink', 'black') + ' ',
|
||||
textColor: 'gray',
|
||||
},
|
||||
error: {
|
||||
|
Reference in New Issue
Block a user