commit | a90d9749cf5e4ce4940c8dbe4fc72e7113ea78ff | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@opennetworking.org> | Thu Feb 14 10:27:19 2019 -0800 |
committer | Thomas Vachuska <tom@opennetworking.org> | Thu Feb 14 22:51:23 2019 +0000 |
tree | 69c9e1a1b3d8d49ae98cd12114293fa05afef4be | |
parent | dc77af5a4d40d8f07e3c9c71cf20e679f9e49b01 [diff] |
remove useless trace statement Change-Id: If29a03b7db60cb3bb6598e47a7dc6d81342d71dc
diff --git a/core/net/src/main/java/org/onosproject/cfg/impl/ConfigPropertyDefinitions.java b/core/net/src/main/java/org/onosproject/cfg/impl/ConfigPropertyDefinitions.java index 0ecbf7e..e07773b 100644 --- a/core/net/src/main/java/org/onosproject/cfg/impl/ConfigPropertyDefinitions.java +++ b/core/net/src/main/java/org/onosproject/cfg/impl/ConfigPropertyDefinitions.java
@@ -75,7 +75,6 @@ while ((line = br.readLine()) != null) { if (!line.isEmpty() && !line.startsWith(COMMENT)) { String[] f = line.split(SEP, 4); - log.info("Line is: {} length of array is: {}", line, f.length); builder.add(defineProperty(f[0], Type.valueOf(f[1]), f[2], f[3])); } }