From a4c61e285e70b1a0b8dceef65d03ab64aff02430 Mon Sep 17 00:00:00 2001 From: Toby Date: Tue, 9 Aug 2022 20:23:22 -0700 Subject: [PATCH] chore: minor log format change --- cmd/client.go | 2 +- cmd/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/client.go b/cmd/client.go index ef12472..2bc1f52 100644 --- a/cmd/client.go +++ b/cmd/client.go @@ -290,7 +290,7 @@ func client(config *clientConfig) { } } } - logrus.WithField("interface", config.TUN.Name).Info("TUN is up and running") + logrus.WithField("interface", config.TUN.Name).Info("TUN up and running") errChan <- tunServer.ListenAndServe() }() } diff --git a/cmd/main.go b/cmd/main.go index bd53a30..b5d815b 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -57,7 +57,7 @@ var rootCmd = &cobra.Command{ FieldsOrder: []string{ "version", "url", "config", "file", "mode", - "addr", "src", "dst", "session", "action", + "addr", "src", "dst", "session", "action", "interface", "retry", "interval", "code", "msg", "error", },