Skip to content

Commit

Permalink
Merge pull request #143 from pavelkogan/callstack-export
Browse files Browse the repository at this point in the history
Export all CallStack log functions
  • Loading branch information
snoyberg committed Jul 27, 2017
2 parents 76aefc8 + 177b8fc commit 61eb828
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions monad-logger/Control/Monad/Logger/CallStack.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ module Control.Monad.Logger.CallStack (
, logInfo
, logWarn
, logError
, logOther
, logDebugSH
, logInfoSH
, logWarnSH
, logErrorSH
, logOtherSH
) where

import Control.Monad.Logger as Log hiding (logDebug, logError,
logInfo, logOther, logWarn)
import Control.Monad.Logger as Log hiding (logDebug, logDebugSH,
logError, logErrorSH, logInfo,
logInfoSH, logOther, logOtherSH,
logWarn, logWarnSH)
import Data.Text (Text)
import qualified Data.Text as Text
import GHC.Stack
Expand Down

0 comments on commit 61eb828

Please sign in to comment.