diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2009-07-21 02:23:21 +0100 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-10-19 11:18:59 +1000 |
commit | 1b88e4eb2e605fd1d3adffaf38dc40be6a28970d (patch) | |
tree | 3af6224ef169483a0e31d7697791279c1cb35f04 | |
parent | 2969eaa88c4422fedf1b069e6fe055904b233db2 (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>
(cherry picked from commit 1b0dfd8dee639870725d3bd9b70c3bd589d09e5a)
-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) |