summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vnc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/vnc.py b/vnc.py
index 37833040b..c0dc83df1 100644
--- a/vnc.py
+++ b/vnc.py
@@ -36,6 +36,7 @@ _ = lambda x: gettext.ldgettext("anaconda", x)
import logging
log = logging.getLogger("anaconda")
+stdoutLog = logging.getLogger("anaconda.stdout")
class VncServer:
@@ -229,7 +230,7 @@ class VncServer:
try:
xvncp = subprocess.Popen(xvnccommand, stdout=self.openlogfile(), stderr=subprocess.STDOUT)
except:
- log.critical("Could not start the VNC server. Aborting.")
+ stdoutLog.critical("Could not start the VNC server. Aborting.")
sys.exit(1)
# Lets give the xvnc time to initialize