diff options
author | Jakob Unterwurzacher | 2021-06-21 11:32:04 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-06-21 11:32:04 +0200 |
commit | 6b0e63c1a86946de23f549e7d80ea933a4a105f8 (patch) | |
tree | 59bc27a3f0822f413997b8fd3bc4e512747c7725 /main.go | |
parent | c5d8fa83ae702017fc90769dff178fda6a7942a3 (diff) |
Improve startup debug output
The startup debug output was very verbose but still missing some
effective crypto settings.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -176,6 +176,7 @@ func main() { if args.debug { tlog.Debug.Enabled = true } + tlog.Debug.Printf("cli args: %q", os.Args) // "-v" if args.version { tlog.Debug.Printf("openssl=%v\n", args.openssl) @@ -282,12 +283,6 @@ func main() { if args.cpuprofile != "" || args.memprofile != "" || args.trace != "" { tlog.Info.Printf("Note: You must unmount gracefully, otherwise the profile file(s) will stay empty!\n") } - // "-openssl" - if !args.openssl { - tlog.Debug.Printf("OpenSSL disabled, using Go GCM") - } else { - tlog.Debug.Printf("OpenSSL enabled") - } // Operation flags nOps := countOpFlags(&args) if nOps == 0 { |