Skip to content

Commit

Permalink
Fix logging parameter.
Browse files Browse the repository at this point in the history
Signed-off-by: Achim Kraus <[email protected]>
  • Loading branch information
Achim Kraus committed Apr 13, 2021
1 parent c4f16a6 commit 46d09ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public OSCoreStack(String tag, NetworkConfig config, Outbox outbox, OSCoreCtxDB
ReliabilityLayer reliabilityLayer;
if (config.getBoolean(NetworkConfig.Keys.USE_CONGESTION_CONTROL)) {
reliabilityLayer = CongestionControlLayer.newImplementation(tag, config);
LOGGER.info("{}Enabling congestion control: {0}", tag, reliabilityLayer.getClass().getSimpleName());
LOGGER.info("{}Enabling congestion control: {}", tag, reliabilityLayer.getClass().getSimpleName());
} else {
reliabilityLayer = new ReliabilityLayer(config);
}
Expand Down

0 comments on commit 46d09ab

Please sign in to comment.