a bit better improvised logging, but logging is still todo

This commit is contained in:
Dennis Frieberg 2021-04-02 18:32:16 +02:00
parent 727b24e705
commit 49f3b092be

View file

@ -36,7 +36,7 @@ withConfigs :: (a -> IO (MVar ())) -> TomlCodec [a] -> FilePath -> IO [MVar ()]
withConfigs f codec configFile = do
parseResult <- Toml.decodeFileEither codec configFile
either
(error "Logging not implemented")
(error . show)
(mapM f)
parseResult