From d3c7cbeea76644f9955b67206a1440102b7e8b30 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 26 Sep 2020 10:52:04 +1000 Subject: [PATCH] better documentation --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 668d8bab8..697129f80 100644 --- a/main.go +++ b/main.go @@ -36,14 +36,14 @@ func main() { flaggy.Bool(&versionFlag, "v", "version", "Print the current version") debuggingFlag := false - flaggy.Bool(&debuggingFlag, "d", "debug", "Run in debug mode with logging") + flaggy.Bool(&debuggingFlag, "d", "debug", "Run in debug mode with logging (see --logs flag below). Use the LOG_LEVEL env var to set the log level (debug/info/warn/error)") + + logFlag := false + flaggy.Bool(&logFlag, "l", "logs", "Tail lazygit logs (intended to be used when `lazygit --debug` is called in a separate terminal tab)") configFlag := false flaggy.Bool(&configFlag, "c", "config", "Print the default config") - logFlag := false - flaggy.Bool(&logFlag, "l", "logs", "Tail lazygit logs (intended to be used in a separate terminal tab to lazygit)") - flaggy.Parse() if versionFlag {