Skip to content

Commit

Permalink
silence channel get
Browse files Browse the repository at this point in the history
  • Loading branch information
openshwprojects committed Sep 22, 2024
1 parent b0f7fda commit afba492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mqtt/new_mqtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ int channelGet(obk_mqtt_request_t* request) {
// atoi won't parse any non-decimal chars, so it should skip over the rest of the topic.
channel = atoi(p);

addLogAdv(LOG_INFO, LOG_FEATURE_MQTT, "channelGet channel %i", channel);
//addLogAdv(LOG_INFO, LOG_FEATURE_MQTT, "channelGet channel %i", channel);

// if channel out of range, stop here.
if ((channel < 0) || (channel > 32)) {
Expand Down

0 comments on commit afba492

Please sign in to comment.