Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #355 from vania-pooh/master
Browse files Browse the repository at this point in the history
Removed useless quotes from logs
  • Loading branch information
vania-pooh authored Feb 20, 2018
2 parents 9618642 + a84550d commit 4b908b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,14 @@ func (config *Config) Load(browsers, containerLogs string) error {
if err != nil {
return fmt.Errorf("browsers config: %v", err)
}
log.Printf("[-] [INIT] [Loaded configuration from \"%s\"]", browsers)
log.Printf("[-] [INIT] [Loaded configuration from %s]", browsers)
var cl *container.LogConfig
err = loadJSON(containerLogs, &cl)
if err != nil {
log.Printf("[-] [INIT] [Using default containers log configuration because of: %v]", err)
cl = &container.LogConfig{}
} else {
log.Printf("[-] [INIT] [Loaded configuration from \"%s\"]", containerLogs)
log.Printf("[-] [INIT] [Loaded log configuration from %s]", containerLogs)
}
config.lock.Lock()
defer config.lock.Unlock()
Expand Down

0 comments on commit 4b908b8

Please sign in to comment.