first commit

This commit is contained in:
cxh 2025-09-08 16:26:21 +08:00
parent 15433a861e
commit eaed6e792e

View File

@ -123,6 +123,8 @@ struct AppConfig
LOG_INFO("[Config] Loaded MQTT server: " + cfg.mqtt.server_ip + LOG_INFO("[Config] Loaded MQTT server: " + cfg.mqtt.server_ip +
":" + std::to_string(cfg.mqtt.server_port)); ":" + std::to_string(cfg.mqtt.server_port));
LOG_INFO("[Config] MQTT client ID: " + cfg.mqtt.client_id); LOG_INFO("[Config] MQTT client ID: " + cfg.mqtt.client_id);
LOG_INFO("[Config] MQTT Credentials - username: " + cfg.mqtt.username +
", password: " + cfg.mqtt.password);
LOG_INFO("[Config] MQTT Topics: " + cfg.mqtt.topics.heartbeat_up + ", " + LOG_INFO("[Config] MQTT Topics: " + cfg.mqtt.topics.heartbeat_up + ", " +
cfg.mqtt.topics.video_down + ", " + cfg.mqtt.topics.video_down_ack); cfg.mqtt.topics.video_down + ", " + cfg.mqtt.topics.video_down_ack);