1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00

Missing new line from network monitor "connected!" notification

This commit is contained in:
Federico Fissore
2013-07-20 19:49:50 +02:00
parent 0aa42f1914
commit e6b11c44f6

View File

@ -108,7 +108,7 @@ public class NetworkMonitor extends AbstractMonitor {
// ignore
}
if (channel.isConnected()) {
NetworkMonitor.this.message(_("connected!"));
NetworkMonitor.this.message(_("connected!") + '\n');
}
}