diff options
Diffstat (limited to 'CabalHelper/Compiletime/Log.hs')
-rw-r--r-- | CabalHelper/Compiletime/Log.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CabalHelper/Compiletime/Log.hs b/CabalHelper/Compiletime/Log.hs index ec38f88..eb7ecaa 100644 --- a/CabalHelper/Compiletime/Log.hs +++ b/CabalHelper/Compiletime/Log.hs @@ -19,5 +19,5 @@ vLog _ _ = return () logIOError :: Options -> String -> IO (Maybe a) -> IO (Maybe a) logIOError opts label a = do a `E.catch` \(ex :: IOError) -> do - vLog opts $ label ++ ": " ++ E.displayException ex + vLog opts $ label ++ ": " ++ show ex return Nothing |