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
Yuta HIGUCHI
2014-10-13 10:38:38 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3708308165467c3cdae12756915ada57d0082b53
37083081
1 parent
3ffbb271
Lowering log level.
Change-Id: Iade7f2b9aeebf73cb65830ecf3120f64da5ca7df
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/GossipDeviceStore.java
core/store/dist/src/main/java/org/onlab/onos/store/link/impl/GossipLinkStore.java
core/store/dist/src/main/java/org/onlab/onos/store/device/impl/GossipDeviceStore.java
View file @
3708308
...
...
@@ -1090,7 +1090,7 @@ public class GossipDeviceStore
.
toList
();
if
(
nodeIds
.
size
()
==
1
&&
nodeIds
.
get
(
0
).
equals
(
self
))
{
log
.
info
(
"No other peers in the cluster."
);
log
.
debug
(
"No other peers in the cluster."
);
return
;
}
...
...
core/store/dist/src/main/java/org/onlab/onos/store/link/impl/GossipLinkStore.java
View file @
3708308
...
...
@@ -538,7 +538,7 @@ public class GossipLinkStore
.
toList
();
if
(
nodeIds
.
size
()
==
1
&&
nodeIds
.
get
(
0
).
equals
(
self
))
{
log
.
info
(
"No other peers in the cluster."
);
log
.
debug
(
"No other peers in the cluster."
);
return
;
}
...
...
Please
register
or
login
to post a comment