mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-09 22:42:58 +00:00
cmd: Configure logging before any log messages
This commit is contained in:
parent
254e61f727
commit
f65e26bc2a
@ -16,11 +16,12 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
common.SetupLogging(os.Getenv("LOG_DIR"))
|
||||
|
||||
bindAddr := os.Getenv("BIND_ADDRESS")
|
||||
if bindAddr == "" {
|
||||
log.Panic("No BIND_ADDRESS environment variable found.")
|
||||
}
|
||||
common.SetupLogging(os.Getenv("LOG_DIR"))
|
||||
|
||||
// TODO: Rather than generating a new key on every startup, we should be
|
||||
// reading a PEM formatted file instead.
|
||||
|
@ -34,6 +34,8 @@ func loadConfig(configPath string) (*config.Sync, error) {
|
||||
}
|
||||
|
||||
func main() {
|
||||
common.SetupLogging(os.Getenv("LOG_DIR"))
|
||||
|
||||
flag.Parse()
|
||||
|
||||
if *configPath == "" {
|
||||
@ -47,7 +49,6 @@ func main() {
|
||||
if *bindAddr == "" {
|
||||
log.Fatal("--listen must be supplied")
|
||||
}
|
||||
common.SetupLogging(os.Getenv("LOG_DIR"))
|
||||
|
||||
log.Info("sync server config: ", cfg)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user