Skip to content

Commit

Permalink
Work around weird hslogger bug.
Browse files Browse the repository at this point in the history
Apparently hslogger doesn't like the output of __FILE__ as a logger
name.
  • Loading branch information
nominolo committed May 25, 2009
1 parent 06eb420 commit cf3ff31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/Scion/Server/Protocol/Vim.hs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import Text.ParserCombinators.Parsec.Char
import Text.ParserCombinators.ReadP (skipSpaces)
import qualified Data.Set as Set

log = HL.logM __FILE__
log = HL.logM "protocol.vim"
logInfo = log HL.INFO
logError = log HL.ERROR
logDebug = log HL.DEBUG
Expand Down

0 comments on commit cf3ff31

Please sign in to comment.