Disable colors by default.

Index: src/debuglog.c
--- src/debuglog.c.orig
+++ src/debuglog.c
@@ -352,6 +352,9 @@ void DebugLogSetLogType(const int dbgtype)
 			LogMsgType = DEBUGLOG_STDOUT_DEBUG;
 	}
 
+	if (DEBUGLOG_STDOUT_COLOR_DEBUG == LogMsgType)
+		LogDoColor = 1;
+#if 0
 	/* log to stdout and stdout is a tty? */
 	if (DEBUGLOG_STDOUT_DEBUG == LogMsgType && isatty(fileno(stdout)))
 	{
@@ -375,6 +378,7 @@ void DebugLogSetLogType(const int dbgtype)
 			}
 		}
 	}
+#endif
 }
 
 void DebugLogSetLevel(const int level)
