Skip to content

Commit

Permalink
Update BresserWeatherSensorMQTTWifiMgr.ino
Browse files Browse the repository at this point in the history
Fixed debug output format string
  • Loading branch information
matthias-bs committed Sep 27, 2023
1 parent 0f83310 commit 7d5769b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ void wifimgr_setup(void)
strcpy(mqtt_pass, custom_mqtt_pass.getValue());
log_i("The values in the file are: ");
log_i("\tmqtt_server : %s", mqtt_host);
log_i("\tmqtt_port : %d", mqtt_port);
log_i("\tmqtt_port : %s", mqtt_port);
log_i("\tmqtt_user : %s", mqtt_user);
log_i("\tmqtt_pass : ***");

Expand Down

0 comments on commit 7d5769b

Please sign in to comment.