https://issues.dlang.org/show_bug.cgi?id=24468
kinke <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from kinke <[email protected]> --- According to the docs (https://dlang.org/phobos/std_logger_core.html#.stdThreadLocalLog), `stdThreadLocalLog` just forwards to `sharedLog`. The latter has a default LogLevel of info. So in your example, you'd need to set the `sharedLog.logLevel` *before* logging to `stdThreadLocalLog` (which defaults to `LogLevel.all`, forwarding everything to the shared logger). The key info is in the std.logger package docs (https://dlang.org/phobos/std_logger.html): > The LogLevel of the stdThreadLocalLog can be used to filter log calls before > they reach the sharedLog Logger. Perhaps this should be duplicated in the documentation for the `stdThreadLocalLog` property. --
