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
Brian O'Connor
2015-06-04 13:55:18 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a767426cfb18a408f0efb9e228745b2b8940925d
a767426c
1 parent
43548fc1
Adding trace logging to IntentManger
Change-Id: I6cd55521484f52223de5cec563f13b61d97ae4a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
core/net/src/main/java/org/onosproject/net/intent/impl/IntentManager.java
core/net/src/main/java/org/onosproject/net/intent/impl/IntentManager.java
View file @
a767426
...
...
@@ -501,6 +501,14 @@ public class IntentManager
}
});
if
(
log
.
isTraceEnabled
())
{
log
.
trace
(
"applying intent {} -> {} with {} rules: {}"
,
toUninstall
.
isPresent
()
?
toUninstall
.
get
().
key
()
:
"<empty>"
,
toInstall
.
isPresent
()
?
toInstall
.
get
().
key
()
:
"<empty>"
,
operations
.
stages
().
stream
().
mapToLong
(
i
->
i
.
size
()).
sum
(),
operations
.
stages
());
}
flowRuleService
.
apply
(
operations
);
}
...
...
Please
register
or
login
to post a comment