-
-
Notifications
You must be signed in to change notification settings - Fork 151
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
draft: --add-timestamp #323
Conversation
|
@theacodes ping |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a great addition, one little comment.
This is a great idea. I would definitely add the
We'll definitely wanna get that working, but I'm not a fan of using subprocess in tests unless its absolutely necessary. |
The problem I ran into was that for an unknown reason, asctime was not populated in the caplog record when using colorlog. but we are talking about an interaction between two third party libs (caplog and colorlib), through the somewhat complicated Python logging subsystem. I already spent about an hour or two digging into it. I will give it another shot before resorting to process testing. |
responded to comments, except the test. I see two options:
What do you think? |
Sorry for taking so long to get to this. Let's go with (1). |
I noticed that there is some cleanup to do:
|
Thanks! |
introducing an --add_timestamp flag and support for in in the logging system.
#289