Skip to content

Commit

Permalink
clusterer: print the command that cannot be parsed
Browse files Browse the repository at this point in the history
(cherry picked from commit 8ba0309)
  • Loading branch information
razvancrainea committed May 24, 2022
1 parent ecaa596 commit 4ab4876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/clusterer/clusterer.c
Expand Up @@ -869,8 +869,8 @@ static void handle_internal_msg(bin_packet_t *received, int packet_type,
handle_cap_update(received, src_node);
break;
default:
LM_WARN("Invalid clusterer binary packet command from node: %d\n",
src_node->node_id);
LM_WARN("Invalid clusterer binary packet command [%d] from node: %d\n",
packet_type, src_node->node_id);
}
}

Expand Down

0 comments on commit 4ab4876

Please sign in to comment.