diff options
author | Chris Wilson <chris+github@qwirx.com> | 2007-10-17 12:48:27 +0000 |
---|---|---|
committer | Chris Wilson <chris+github@qwirx.com> | 2007-10-17 12:48:27 +0000 |
commit | 9a2d9025a5b7d12a26c0a8810a539d9e516fcca8 (patch) | |
tree | 2d39ab1f47cca32cadda096fd620b90f60a4dbed | |
parent | 4165c30332ba148735d726eed8cdd500a1376fbf (diff) |
Don't disable logging on Win32 console. (merges [1834])
-rw-r--r-- | lib/server/Daemon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/server/Daemon.cpp b/lib/server/Daemon.cpp index a9eb5bf5..584d8a00 100644 --- a/lib/server/Daemon.cpp +++ b/lib/server/Daemon.cpp @@ -439,12 +439,12 @@ int Daemon::Main(const std::string &rConfigFileName) { ::close(devnull); } -#endif // ! WIN32 // And definitely don't try and send anything to those file descriptors // -- this has in the past sent text to something which isn't expecting it. TRACE_TO_STDOUT(false); Logging::ToConsole(false); +#endif // ! WIN32 } } catch(BoxException &e) |