Skip to content

Commit f578d54

Browse files
committed
Raise verbosity of the error message
1 parent 0358dba commit f578d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mgos_mqtt_conn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ static bool mgos_mqtt_time_ok(struct mgos_mqtt_conn *c) {
386386
if (c->cfg == NULL) return false;
387387
if (!c->cfg->require_time) return true;
388388
if (mg_time() < 1500000000) {
389-
LOG(LL_DEBUG, ("Time is not set, not connecting"));
389+
LOG(LL_ERROR, ("Time is not set, not connecting"));
390390
return false;
391391
}
392392
return true;

0 commit comments

Comments
 (0)