Skip to content

Commit 8b859e3

Browse files
committed
"Invalid station ID" message as warning instead of info
1 parent c5bfba8 commit 8b859e3

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ The received data can also be saved as JSON (sofar_realtime.json).
2626

2727

2828
## 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+
2935
### 3.2.6 (2025-10-14)
3036

3137
- station_id.length < 9 instead 18

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ class SofarCloud extends utils.Adapter {
401401

402402
// Prüfen, ob station_id zu kurz ist
403403
if (!station_id || station_id.length < 9) {
404-
this.log.info(`Station with invalid ID (${station_id}) skipped.`);
404+
this.log.warn(`Station with invalid ID (${station_id}) skipped.`);
405405
continue;
406406
}
407407

0 commit comments

Comments
 (0)