remove credentials from log, fixes #11

This commit is contained in:
morph027 2020-05-26 07:06:46 +02:00
parent 563658bf59
commit fbbb8315ac
No known key found for this signature in database
GPG Key ID: BF17A54BB873BE58
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ func NewBackendServer(config *goconf.ConfigFile, hub *Hub, version string) (*Bac
return nil, fmt.Errorf("Need a shared TURN secret if TURN servers are configured.")
}
log.Printf("Using \"%s\" as TURN API key", turnapikey)
log.Printf("Using \"%s\" as shared TURN secret", turnsecret)
log.Printf("Using configured TURN API key")
log.Printf("Using configured shared TURN secret")
for _, s := range turnserverslist {
log.Printf("Adding \"%s\" as TURN server", s)
}