Skip to content

Commit

Permalink
Fix trace format in Relayer class
Browse files Browse the repository at this point in the history
  • Loading branch information
pruivo committed Jun 28, 2023
1 parent ccc4104 commit fe7e93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jgroups/protocols/relay/Relayer.java
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public void viewAccepted(View new_view) {

// remove all routes which were dropped between the old and new view:
if(!removed_routes.isEmpty() && log.isTraceEnabled())
log.trace("%s: removing routes %s from routing table", removed_routes);
log.trace("%s: removing routes %s from routing table", channel.getAddress(), removed_routes);
removed_routes.forEach(routes.keySet()::remove);

if(!down.isEmpty())
Expand Down

0 comments on commit fe7e93c

Please sign in to comment.