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

This commit is contained in:
2026-05-03 20:05:29 +07:00
parent acb084475d
commit 78f0cac214

2
app.js
View File

@@ -50,7 +50,7 @@ app.use(handleError);
// Saat pesan diterima
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.onNotificationReminder(topic, message);
});