You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
method described in crates/example-lib However, when a binary doesn't use a slog drain, but env_logger, messages that should look like this with env_logger (and does with slog)
skipping the information that should be delivered with error!(self.logger, "error message here"; "errorid" => error_id, "cause" => cause);
The text was updated successfully, but these errors were encountered:
Emilgardis
changed the title
StdLog doesn't pass key => value from inside log messages
StdLog doesn't pass key => value from inside log messages with env_logger
Oct 2, 2016
Thanks for report! I've just missed that. :( . Should be fixed now - please confirm if it works for you as expected. I need to optimize in #60, and if it does, I'll publish new version.
I'm currently trying to implement stdlog for Amethyst for optional slog support for a binary. To enable this, I'm using the
method described in crates/example-lib However, when a binary doesn't use a slog drain, but env_logger, messages that should look like this with env_logger (and does with slog)
looks like
skipping the information that should be delivered with
error!(self.logger, "error message here"; "errorid" => error_id, "cause" => cause);
The text was updated successfully, but these errors were encountered: