Skip to content

Commit ef6d13a

Browse files
committed
Revert "move data dump to debug output level"
This reverts commit 2c3c682.
1 parent 2c3c682 commit ef6d13a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

classes/transports/json_out.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def write_data(self, data: dict[str, str], from_transport: transport_base):
5353
return
5454

5555
self._log.info(f"write data from [{from_transport.transport_name}] to json_out transport")
56-
self._log.debug(data)
56+
self._log.info(data)
5757

5858
# Prepare the JSON output structure
5959
output_data = {}

classes/transports/mqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def write_data(self, data : dict[str, str], from_transport : transport_base):
159159
self.connected = self.client.is_connected()
160160

161161
self._log.info(f"write data from [{from_transport.transport_name}] to mqtt transport")
162-
self._log.debug(data)
162+
self._log.info(data)
163163
#have to send this every loop, because mqtt doesnt disconnect when HA restarts. HA bug.
164164
info = self.client.publish(self.base_topic + "/" + from_transport.device_identifier + "/availability","online", qos=0,retain=True)
165165
if info.rc == MQTT_ERR_NO_CONN:

0 commit comments

Comments
 (0)