Compare commits

..

1 Commits

Author SHA1 Message Date
Rene De Ren
fdfb9edf0d fix: replace console.log with logger for unknown topic warning
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 09:33:31 +01:00

View File

@@ -41,7 +41,7 @@ class nodeClass {
break; break;
} }
default: default:
console.log("Unknown topic: " + msg.topic); this.source.logger.warn(`Unknown topic: ${msg.topic}`);
} }
if (done) { if (done) {