text_formatter: improve comments

This commit is contained in:
Simon Eskildsen 2015-02-25 19:01:02 +00:00
parent 115ae7564e
commit 5be851d706
1 changed files with 10 additions and 4 deletions

View File

@ -36,10 +36,16 @@ func miniTS() int {
type TextFormatter struct { type TextFormatter struct {
// Set to true to bypass checking for a TTY before outputting colors. // Set to true to bypass checking for a TTY before outputting colors.
ForceColors bool ForceColors bool
// Force disabling colors.
DisableColors bool DisableColors bool
// Set to true to disable timestamp logging (useful when the output
// is redirected to a logging system already adding a timestamp) // Disable timestamp logging. useful when output is redirected to logging
// system that already adds timestamps.
DisableTimestamp bool DisableTimestamp bool
// Enable logging the full timestamp when a TTY is attached instead of just
// the time passed since beginning of execution.
FullTimestamp bool FullTimestamp bool
} }