diff options
author | marha <marha@users.sourceforge.net> | 2012-09-05 22:40:57 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-09-05 22:40:57 +0200 |
commit | d9d18b33b6a015987f589c2121abd108eb0a350e (patch) | |
tree | 4c344b8038a889da0b3ed35ceb6a00a98177e890 /xorg-server/os/log.c | |
parent | 046f1422921cf63104f394a430634d364a8fd35a (diff) | |
download | vcxsrv-d9d18b33b6a015987f589c2121abd108eb0a350e.tar.gz vcxsrv-d9d18b33b6a015987f589c2121abd108eb0a350e.tar.bz2 vcxsrv-d9d18b33b6a015987f589c2121abd108eb0a350e.zip |
Removed printing milli-seconds in log file
Diffstat (limited to 'xorg-server/os/log.c')
-rw-r--r-- | xorg-server/os/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg-server/os/log.c b/xorg-server/os/log.c index 9c83175c5..23f181d8d 100644 --- a/xorg-server/os/log.c +++ b/xorg-server/os/log.c @@ -386,8 +386,8 @@ LogSWrite(int verb, const char *buf, size_t len, Bool end_line) #endif } else if (!inSignalContext && logFile) { - if (newline) - fprintf(logFile, "[%10.3f] ", GetTimeInMillis() / 1000.0); +// if (newline) +// fprintf(logFile, "[%10.3f] ", GetTimeInMillis() / 1000.0); newline = end_line; fwrite(buf, len, 1, logFile); if (logFlush) { |