We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5bfba8 commit 8b859e3Copy full SHA for 8b859e3
2 files changed
README.md
@@ -26,6 +26,12 @@ The received data can also be saved as JSON (sofar_realtime.json).
26
27
28
## Changelog
29
+
30
+### **WORK IN PROGRESS**
31
32
+- "Invalid station ID" message as warning instead of info
33
+- "Start cloud query after..." as info instead of debug
34
35
### 3.2.6 (2025-10-14)
36
37
- station_id.length < 9 instead 18
main.js
@@ -401,7 +401,7 @@ class SofarCloud extends utils.Adapter {
401
402
// Prüfen, ob station_id zu kurz ist
403
if (!station_id || station_id.length < 9) {
404
- this.log.info(`Station with invalid ID (${station_id}) skipped.`);
+ this.log.warn(`Station with invalid ID (${station_id}) skipped.`);
405
continue;
406
}
407
0 commit comments