fix: comment out console log for received MQTT messages to reduce logging noise #55

Merged
fachba merged 1 commits from wisdom into main 2026-05-03 13:06:25 +00:00
Showing only changes of commit 78f0cac214 - Show all commits

2
app.js
View File

@@ -50,7 +50,7 @@ app.use(handleError);
// Saat pesan diterima // Saat pesan diterima
mqttClient.on('message', (topic, message) => { mqttClient.on('message', (topic, message) => {
console.log(`Received message on topic "${topic}":`, message.toString()); // console.log(`Received message on topic "${topic}":`, message.toString());
notifikasiWaService.onNotification(topic, message); notifikasiWaService.onNotification(topic, message);
notifikasiWaService.onNotificationReminder(topic, message); notifikasiWaService.onNotificationReminder(topic, message);
}); });