logger icon indicating copy to clipboard operation
logger copied to clipboard

A fast logging system for Haskell

Results 17 logger issues
Sort by recently updated
recently updated
newest added

Apologies if I'm doing something wrong, but I would expect the following program, ```hs module Main where import Data.String import System.Log.FastLogger main :: IO () main = do ls

Recently keter was moved over to fastlogger, we set the LogFile limit conservatively to maxInt to make sure it doesn't lose information. https://github.com/snoyberg/keter/blob/28ba9b538b9e3850922c5e59a8e3038425a11f9a/src/Keter/Logger.hs#L51 Now we got a bugreport that it...

Of course, `LoggerSet` isn't supposed to be usable after it was closed (with `rmLoggerSet`), however it should fail in a way that doesn't cause confusion. I use this utility to...

Hello, Just want to check if it is possible for the logs to be rotated while live? ``` ---------------------------------------- -- my usage of fast-logger --------------------------------------- -- 1 MiB = 1...

I'm trying to emit JSON logs from my app using a `TimedFastLogger`. The function that I want to write, looks something like this: ```haskell logStructuredPayload :: FormattedTime -> StructuredPayload ->...

Is there any plan to add support for syslog based logging at all? It seems that [`LogType'`](https://hackage.haskell.org/package/fast-logger-3.0.1/docs/System-Log-FastLogger.html#t:LogType-39-) it extensible enough to add such support. Is there a philosophical reason why...

It would be nice to provide a simple way to get colored output!

Functions in `Network.Wai.Logger` use `simpleTimeFormat` only. It would be convenient to change it if it's possible.

As far as I can see, the whole TimedFastLogger thing is primarily intended for the case when one wants to print time to log with precision of one second only....

`withTimedFastLogger` currently has this signature: ``` withTimedFastLogger :: IO FormattedTime -> LogType -> (TimedFastLogger -> IO a) -> IO a ``` Is it possible to have a lifted one? ```...