Skip to content

Commit

Permalink
Updated the default logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Jun 17, 2019
1 parent a5b75c7 commit 32f02dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ func init() {

// Do we have a Log Entries token?
if len(logEntriesToken) > 0 {
log.Println("go-logger: log entries token detected")
log.Println("go-logger: Log Entries token detected")
var err error
implementation, err = NewLogEntriesClient(logEntriesToken)
if err != nil {
log.Println("go-logger: failed to eager connect to Log Entries", err)
log.Printf("go-logger: failed to eager connect to Log Entries: %s", err.Error())
} else {
log.Println("go-logger: log entries connection started", err)
log.Println("go-logger: Log Entries connection started")
go implementation.(*logEntries).ProcessQueue()
}
} else { // Basic implementation for local logging
Expand Down

0 comments on commit 32f02dc

Please sign in to comment.