diff --git a/connect.go b/connect.go index 3545a44..96ce75c 100644 --- a/connect.go +++ b/connect.go @@ -79,7 +79,11 @@ func NewConnection(config *AppConfig) (*Connection, error) { c.Local = config.Local c.keypair, _ = keypair.New() fmt.Fprintf(os.Stderr, "Your public key: %s\n", c.keypair.Public) - + if c.Debug { + SetLogLevel("debug") + } else { + SetLogLevel("error") + } if c.Local { c.Yes = true c.DontEncrypt = true @@ -143,12 +147,6 @@ func NewConnection(config *AppConfig) (*Connection, error) { c.File.IsEncrypted = false } - if c.Debug { - SetLogLevel("debug") - } else { - SetLogLevel("error") - } - return c, nil }