don't color debug messages unless we are writing to stdout

master
jluehrs2 2007-09-02 19:59:29 -05:00
parent 66a30f539e
commit d645810692
1 changed files with 1 additions and 2 deletions

View File

@ -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