summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/services/protocols/ovsdb/client.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/ryu/services/protocols/ovsdb/client.py b/ryu/services/protocols/ovsdb/client.py
index 4a67dfd1..9b7917e4 100644
--- a/ryu/services/protocols/ovsdb/client.py
+++ b/ryu/services/protocols/ovsdb/client.py
@@ -15,24 +15,8 @@
import collections
import errno
-import logging
import uuid
-# NOTE(jkoelker) Patch Vlog so that is uses standard logging
-from ovs import vlog
-
-
-class Vlog(vlog.Vlog):
- def __init__(self, name):
- self.log = logging.getLogger('ovs.%s' % name)
-
- def __log(self, level, message, **kwargs):
- level = vlog.LEVELS.get(level, logging.DEBUG)
- self.log.log(level, message, **kwargs)
-
-vlog.Vlog = Vlog
-
-
from ovs import jsonrpc
from ovs import poller
from ovs import reconnect