Avoid logging stacktraces for schema version mismatches
[ovsdb.git] / southbound / southbound-impl / src / main / java / org / opendaylight / ovsdb / southbound / SouthboundMapper.java
index 8ffe4275acfa4b63616c4ba624592e952eaaea97..6055ca05f4f9d27e889b69dff40d6a307323479b 100644 (file)
@@ -245,7 +245,8 @@ public class SouthboundMapper {
         try {
             protocols = bridge.getProtocolsColumn().getData();
         } catch (SchemaVersionMismatchException e) {
-            LOG.warn("protocols not supported by this version of ovsdb", e);
+            // We don't care about the exception stack trace here
+            LOG.warn("protocols not supported by this version of ovsdb: {}", e.getMessage());
         }
         List<ProtocolEntry> protocolList = new ArrayList<>();
         if (protocols != null && protocols.size() > 0) {