Skip to content

Commit

Permalink
missing space in debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
petersilva committed Jun 21, 2024
1 parent fd97453 commit 9738569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sarracenia/moth/mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def __sub_on_connect(client, userdata, flags, reason_code, properties=None):

(res, mid) = client.subscribe(subj, qos=userdata.o['qos'])
userdata.subscribe_in_progress += 1
logger.info( f"asked to subscribe to: {subj}, mid={mid}"
logger.info( f"asked to subscribe to: {subj}, mid={mid} "
f"qos={userdata.o['qos']} result: {paho.mqtt.client.error_string(res)}" )
userdata.subscribe_mutex.release()
userdata.metricsConnect()
Expand Down

0 comments on commit 9738569

Please sign in to comment.