Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Madan Jampani
2014-10-24 20:38:07 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cfbc05404b33fab809163563072dd8ec0b398c16
cfbc0540
1 parent
24f9efb4
Removed exception stack trace for a warning log message
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
utils/netty/src/main/java/org/onlab/netty/NettyMessagingService.java
utils/netty/src/main/java/org/onlab/netty/NettyMessagingService.java
View file @
cfbc054
...
...
@@ -71,7 +71,7 @@ public class NettyMessagingService implements MessagingService {
clientChannelClass
=
EpollSocketChannel
.
class
;
return
;
}
catch
(
Throwable
t
)
{
log
.
warn
(
"Failed to initialize native (epoll) transport.
Proceeding with nio."
,
t
);
log
.
warn
(
"Failed to initialize native (epoll) transport.
Reason: {}. Proceeding with nio."
,
t
.
getMessage
()
);
}
clientGroup
=
new
NioEventLoopGroup
();
serverGroup
=
new
NioEventLoopGroup
();
...
...
Please
register
or
login
to post a comment