Skip to content
Snippets Groups Projects
Commit c84ff50f authored by Ryan Izard's avatar Ryan Izard
Browse files

Fix copy-and-paste error in log message for setting default table ID

parent 787e86c6
No related branches found
No related tags found
No related merge requests found
......@@ -478,9 +478,9 @@ public class Forwarding extends ForwardingBase implements IFloodlightModule, IOF
tmp = configParameters.get("table-id");
if (tmp != null) {
FLOWMOD_DEFAULT_TABLE_ID = TableId.of(ParseUtils.parseHexOrDecInt(tmp));
log.info("Default idle timeout set to {}.", FLOWMOD_DEFAULT_IDLE_TIMEOUT);
log.info("Default table ID set to {}.", FLOWMOD_DEFAULT_TABLE_ID);
} else {
log.info("Default idle timeout not configured. Using {}.", FLOWMOD_DEFAULT_IDLE_TIMEOUT);
log.info("Default table ID not configured. Using {}.", FLOWMOD_DEFAULT_TABLE_ID);
}
tmp = configParameters.get("priority");
if (tmp != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment