Skip to content
Snippets Groups Projects
Commit 46d2a188 authored by Kanzhe Jiang's avatar Kanzhe Jiang
Browse files

BSC-2011, update logging on exception

parent 0e4bd761
No related branches found
No related tags found
No related merge requests found
......@@ -423,11 +423,11 @@ public class OFMessageFilterManager
packetClient.pushMessageAsync(sendMsg);
}
} catch (TTransportException e) {
log.error("Caught TTransportException: {}", e);
log.error("Caught TTransportException: {}", e.getMessage());
disconnectFromPSServer();
connectToPSServer();
} catch (Exception e) {
log.error("Caught exception: {}", e);
log.error("Caught exception: {}", e.getMessage());
disconnectFromPSServer();
connectToPSServer();
}
......
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