From d645810692095159b10af4118a9aa932b382c39a Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Sun, 2 Sep 2007 19:59:29 -0500 Subject: don't color debug messages unless we are writing to stdout --- src/irc/debug.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/irc/debug.lua b/src/irc/debug.lua index d60e38f..cdafd0f 100644 --- a/src/irc/debug.lua +++ b/src/irc/debug.lua @@ -46,7 +46,6 @@ end -- }}} -- message {{{ --- TODO: disable color when we are writing to a file -- -- Output a debug message. -- @param msg_type Arbitrary string corresponding to the type of message @@ -56,7 +55,7 @@ end function message(msg_type, msg, color) if ON then local endcolor = "" - if COLOR then + if COLOR and out_file == io.stdout then color = color or "\027[1;30m" endcolor = "\027[0m" else -- cgit v1.2.3-54-g00ecf