Upgrade to Neon base platform
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / schema / GenericTableSchema.java
index 90d1c76b75a9df6b17134c6d074b5a23b1481608..f32978b1b14a5ccddade4ca3532fc24626bba74c 100644 (file)
@@ -40,7 +40,7 @@ public class GenericTableSchema extends TableSchema<GenericTableSchema> {
         Map<String, ColumnSchema> columns = new HashMap<>();
         for (Iterator<Map.Entry<String, JsonNode>> iter = json.get("columns").fields(); iter.hasNext(); ) {
             Map.Entry<String, JsonNode> column = iter.next();
-            LOG.trace("{}:{}", tableName, column.getKey());
+            LOG.trace("fromJson() table/column = {}:{}", tableName, column.getKey());
             columns.put(column.getKey(), ColumnSchema.fromJson(column.getKey(), column.getValue()));
         }