diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2009-07-21 02:23:21 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2009-10-16 21:12:27 +0100 |
commit | de43bff3e7f197c579e26a6ea5056e3bc6eaad77 (patch) | |
tree | da835e0de718d5566f33035fa4bcb818b1af474e | |
parent | a5595709c92303a131da4a196314acad9bf57889 (diff) |
Cygwin/X: Make -logverbose affect the verbosity of logging to the log file
Make -logverbose affect the verbosity of logging to the log file, not just the
verbosity of logging to the console
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r-- | hw/xwin/InitOutput.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xwin/InitOutput.c b/hw/xwin/InitOutput.c index ba4fac5cb..a1d63f99c 100644 --- a/hw/xwin/InitOutput.c +++ b/hw/xwin/InitOutput.c @@ -705,7 +705,7 @@ OsVendorInit (void) } LogSetParameter (XLOG_FLUSH, 1); LogSetParameter (XLOG_VERBOSITY, g_iLogVerbose); - LogSetParameter (XLOG_FILE_VERBOSITY, 1); + LogSetParameter (XLOG_FILE_VERBOSITY, g_iLogVerbose); /* Log the version information */ if (serverGeneration == 1) |