diff options
author | Ewan Mellor <ewan.mellor@citrix.com> | 2011-11-01 12:29:23 -0700 |
---|---|---|
committer | Ewan Mellor <ewan.mellor@citrix.com> | 2011-11-01 12:29:23 -0700 |
commit | 6fa7fa4025e29303a4defca7da1f816405c6784f (patch) | |
tree | ab7803fe5d0a6fcae4f76078ff850bec0c17a2c1 | |
parent | 71bd02356b41f682c6a196f75e0ed1accc8f5fb6 (diff) | |
download | nova-6fa7fa4025e29303a4defca7da1f816405c6784f.tar.gz nova-6fa7fa4025e29303a4defca7da1f816405c6784f.tar.xz nova-6fa7fa4025e29303a4defca7da1f816405c6784f.zip |
Stop nova-ajax-console-proxy configuring its own logging.
nova-ajax-console-proxy is overriding the logging configuration carefully
set up by nova.log. There's no reason for it to do this, and it's the only
script in nova/bin that does. I've removed that code.
Change-Id: I5b2d5026d529a20d26ba3bb721b15f235f6fdda8
-rwxr-xr-x | bin/nova-ajax-console-proxy | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bin/nova-ajax-console-proxy b/bin/nova-ajax-console-proxy index 23fb42fb5..660eff9d0 100755 --- a/bin/nova-ajax-console-proxy +++ b/bin/nova-ajax-console-proxy @@ -53,8 +53,6 @@ flags.DEFINE_flag(flags.HelpshortFlag()) flags.DEFINE_flag(flags.HelpXMLFlag()) LOG = logging.getLogger('nova.ajax_console_proxy') -LOG.setLevel(logging.DEBUG) -LOG.addHandler(logging.StreamHandler()) class AjaxConsoleProxy(object): |