[Development] winvnc: Enable debug output when built with -D_DEBUG
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4242 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/win/winvnc/winvnc.cxx b/win/winvnc/winvnc.cxx
index b16fb60..1df0f76 100644
--- a/win/winvnc/winvnc.cxx
+++ b/win/winvnc/winvnc.cxx
@@ -224,15 +224,25 @@
try {
// - Initialise the available loggers
//freopen("\\\\drupe\\tjr\\WinVNC4.log","ab",stderr);
- //setbuf(stderr, 0);
- initStdIOLoggers();
+#ifdef _DEBUG
+ AllocConsole();
+ freopen("CONIN$", "rb", stdin);
+ freopen("CONOUT$", "wb", stdout);
+ freopen("CONOUT$", "wb", stderr);
+ setbuf(stderr, 0);
+ initStdIOLoggers();
+ initFileLogger("C:\\temp\\WinVNC4.log");
+ logParams.setParam("*:stderr:100");
+#else
initFileLogger("C:\\temp\\WinVNC4.log");
+ logParams.setParam("*:stderr:0");
+#endif
rfb::win32::initEventLogLogger(VNCServerService::Name);
Configuration::enableServerParams();
// - By default, just log errors to stderr
- logParams.setParam("*:stderr:0");
+
// - Print program details and process the command line
programInfo();