From aa327efeacaf74cb5b480ea8b7f43693e35977f5 Mon Sep 17 00:00:00 2001
From: Philipp Kunz <code@philkunz.com>
Date: Tue, 20 May 2025 19:26:12 +0000
Subject: [PATCH] fix(ts_destination_local): Update debug prefix color in
 DestinationLocal: change from gray to pink for improved visibility.

---
 changelog.md                                     | 5 +++++
 ts/00_commitinfo_data.ts                         | 2 +-
 ts_destination_local/classes.destinationlocal.ts | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/changelog.md b/changelog.md
index f41817a..9577a78 100644
--- a/changelog.md
+++ b/changelog.md
@@ -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
 
diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts
index 949fd09..8f08296 100644
--- a/ts/00_commitinfo_data.ts
+++ b/ts/00_commitinfo_data.ts
@@ -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.'
 }
diff --git a/ts_destination_local/classes.destinationlocal.ts b/ts_destination_local/classes.destinationlocal.ts
index 9032cc4..5f10428 100644
--- a/ts_destination_local/classes.destinationlocal.ts
+++ b/ts_destination_local/classes.destinationlocal.ts
@@ -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: {