timesync.cpp small debug msg change

This commit is contained in:
Klaus K Wilting 2020-03-29 17:03:55 +02:00
parent 4029d545a2
commit 11e91bbd00

View File

@ -48,7 +48,7 @@ void timesync_request(void) {
return; return;
// start timesync handshake // start timesync handshake
else { else {
ESP_LOGI(TAG, "[%0.3f] Timeserver sync request seqNo#%d started", ESP_LOGI(TAG, "[%0.3f] Timeserver sync request started, seqNo#%d",
millis() / 1000.0, time_sync_seqNo); millis() / 1000.0, time_sync_seqNo);
xTaskNotifyGive(timeSyncProcTask); // unblock timesync task xTaskNotifyGive(timeSyncProcTask); // unblock timesync task
} }