refactor: logger implementation from discovery to commons package (#9)

This commit is contained in:
gzuuus
2025-03-26 22:51:16 +01:00
committed by GitHub
parent 07e60bb4ba
commit b238d38c5a
14 changed files with 60 additions and 42 deletions

View File

@@ -0,0 +1,7 @@
import debug from 'debug';
const logger = debug('dvmcp');
const loggerBridge = debug('dvmcp:bridge');
const loggerDiscovery = debug('dvmcp:discovery');
export { logger, loggerBridge, loggerDiscovery };