-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to change log format order ? #388
Comments
Unfortunately, that's currently not supported. You can copy-paste ConsoleRenderer from dev.py and just adjust the order in there. :) |
gotchu. Thanks for the response! |
@hynek I wonder if you are interested in this feature. I'd like to invest some time here. |
I think this is a bit more complicated than it sounds, because it interacts with #341 and should be tackled together. I'm thinking something like |
Please everyone interested, look/comment at/on #577. |
Heya,
Amazing project. I've started using structlog for all my stuff. This is a really dumb question but I honestly couldn't find it "spelled out" for me anywhere.
I'm trying to change the log format of structlogs. This can be accomplished by a format string using Python's stdlib logger.
Basically my current log output is the following:
I want to put the logger name before the log level, e.g.:
How does one accomplish this?
The text was updated successfully, but these errors were encountered: