-
Notifications
You must be signed in to change notification settings - Fork 512
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
Print timestamps when --timestamps is passed #2084
Conversation
Thought I'd take a crack at #2078 . recipe:
echo "ONE"
sleep 10
echo "TWO"
A couple of questions:
|
Yah, agreed. The default formatting is super long. From the original issue, it sounds like the main thing that they wanted to know was how long each command took. We could consider using a default format that only prints the time, like I'd add
I'm always very stingy about short arguments, so I'd leave it out and wait for someone to complain that they use it a lot.
|
I removed subseconds from timestamps. My hunch is that this will be noisier for not much benefit. Timestamp output is human readable, so not covered by backwards compatibility guarantees, so we can add it back later if people want it. |
Print timestamps when the --timestamps flag is passed
#2078