Fix missing newline after TLS warning

This commit is contained in:
Alex 2020-02-01 11:00:09 +01:00
parent 46819a245f
commit 2f9ad411c7
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ func main() {
} }
}() }()
} else { } else {
fmt.Printf("Warning: no valid TLS configuration was provided, not binding on %s", config.BindSecure) log.Printf("Warning: no valid TLS configuration was provided, not binding on %s", config.BindSecure)
} }
} }