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
Sho SHIMIZU
2014-11-05 11:24:13 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8b5051d20241cf2393a26258848da5607498e32b
8b5051d2
1 parent
47eb0d48
Make logger static final variable
Change-Id: I1ea7f3bb9a74a1b1f139512f3d253a1916b30c3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java
core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java
View file @
8b5051d
...
...
@@ -77,7 +77,7 @@ import com.google.common.collect.Lists;
@Service
public
class
IntentManager
implements
IntentService
,
IntentExtensionService
{
private
final
Logger
log
=
getLogger
(
getClass
()
);
private
static
final
Logger
log
=
getLogger
(
IntentManager
.
class
);
public
static
final
String
INTENT_NULL
=
"Intent cannot be null"
;
public
static
final
String
INTENT_ID_NULL
=
"Intent ID cannot be null"
;
...
...
Please
register
or
login
to post a comment