diff options
-rwxr-xr-x | bin/ryu-manager | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ryu-manager b/bin/ryu-manager index 002cc590..d1bf1302 100755 --- a/bin/ryu-manager +++ b/bin/ryu-manager @@ -17,13 +17,13 @@ # limitations under the License. import gevent +from gevent import monkey +monkey.patch_all() + import gflags import logging import sys -from gevent import monkey -monkey.patch_all() - from ryu import log log.early_init_log(logging.DEBUG) |