From f0a637a8341cf1af53223928eedf5f4804e08510 Mon Sep 17 00:00:00 2001 From: Giovanni Bajo Date: Mon, 15 Dec 2014 21:58:26 +0100 Subject: [PATCH] Document new option --- text_formatter.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/text_formatter.go b/text_formatter.go index 6df95ea..ac0b01e 100644 --- a/text_formatter.go +++ b/text_formatter.go @@ -32,8 +32,10 @@ func miniTS() int { type TextFormatter struct { // Set to true to bypass checking for a TTY before outputting colors. - ForceColors bool - DisableColors bool + ForceColors bool + DisableColors bool + // Set to true to disable timestamp logging (useful when the output + // is redirected to a logging system already adding a timestamp) DisableTimestamp bool }