Slightly improve logging
This commit is contained in:
parent
af7469d97b
commit
cd848543b3
2 changed files with 3 additions and 3 deletions
4
main.go
4
main.go
|
@ -386,11 +386,11 @@ func main() {
|
|||
|
||||
cfg, err := readConfig(configPath)
|
||||
if err != nil {
|
||||
logger.Fatalf("config: %v", err)
|
||||
logger.Fatalf("Failed to read config: %v", err)
|
||||
}
|
||||
|
||||
if err := logger.SetLevelFromString(cfg.LogLevel); err != nil {
|
||||
logger.Errorf("config: %v", err)
|
||||
logger.Errorf("Failed to parse logging level: %v", err)
|
||||
}
|
||||
|
||||
client := &httpClient{&http.Client{Timeout: time.Second * 3}}
|
||||
|
|
|
@ -133,5 +133,5 @@ func (br *bridge) handleSilences(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
|
||||
br.logger.Debugf("silences: created new silence %s", id.ID)
|
||||
br.logger.Infof("Created new silence %s", id.ID)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue