From 4a33ed86b87a659127baa7be947ec7d9cac36dc5 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Tue, 14 Jan 2020 17:52:01 -0500 Subject: [PATCH] Requirements added for each output? --- loggy.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/loggy.go b/loggy.go index 37abbf4..4c0c08b 100644 --- a/loggy.go +++ b/loggy.go @@ -37,17 +37,17 @@ type LogOpts struct { toKeybase bool // Will set to true if UseStdout is true toStdout bool - // Output file for logging + // Output file for logging - Required for file output OutFile string - // Keybase Team for logging + // Keybase Team for logging - Required for Keybase output KBTeam string - // Keybase Channel for logging + // Keybase Channel for logging - Optional for Keybase output KBChann string // Log level / verbosity (see LogLevel) Level LogLevel - // Program name for Keybase logging + // Program name for Keybase logging - Required for Keybase output ProgName string - // Use stdout + // Use stdout - Required to print to stdout UseStdout bool }