move debug up

This commit is contained in:
Zack Scholl 2018-06-24 07:32:32 -07:00
parent 9746014f0b
commit 0e99540655
1 changed files with 5 additions and 7 deletions

View File

@ -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
}