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-14 20:29:08 +0100 |
commit | 1b0dfd8dee639870725d3bd9b70c3bd589d09e5a (patch) | |
tree | e2bd982bc12c2b764cd284e3aeb7394a4303ff17 | |
parent | 83d120b90482d356be730f63aead0f8e44a4e846 (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>
Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
-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 2f4b0d222..9aff336e1 100644 --- a/hw/xwin/InitOutput.c +++ b/hw/xwin/InitOutput.c @@ -706,7 +706,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) |