fix(ts_destination_local): Update debug prefix color in DestinationLocal: change from gray to pink for improved visibility.

This commit is contained in:
Philipp Kunz 2025-05-20 19:26:12 +00:00
parent 7cbc64ed8d
commit aa327efeac
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# 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

View File

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

View File

@ -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: {