Skip to content
Snippets Groups Projects
Commit 914fd821 authored by abat's avatar abat
Browse files

Merge into master from pull request #69:

Removing prints not through logger (https://github.com/floodlight/floodlight/pull/69)
parents 8e1ccda0 46f20aaa
No related branches found
No related tags found
No related merge requests found
......@@ -423,13 +423,11 @@ public class OFMessageFilterManager
packetClient.pushMessageAsync(sendMsg);
}
} catch (TTransportException e) {
log.info("Caught TTransportException: {}", e);
System.out.println(e);
log.error("Caught TTransportException: {}", e);
disconnectFromPSServer();
connectToPSServer();
} catch (Exception e) {
log.info("Caught exception: {}", e);
System.out.println(e);
log.error("Caught exception: {}", e);
disconnectFromPSServer();
connectToPSServer();
}
......
......@@ -127,8 +127,7 @@ public class AllSwitchStatisticsResource extends SwitchResourceBase {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
System.out.println("CoreWebManageable thread failed to sleep!");
e.printStackTrace();
log.error("Failed to sleep", e);
}
}
......
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