Skip to content

Commit

Permalink
Merge pull request #649 from vmarmol/events
Browse files Browse the repository at this point in the history
Use formatting glog.Info
  • Loading branch information
rjnagal committed Apr 15, 2015
2 parents 25f3124 + 82034c1 commit 0971262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storagedriver.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func NewMemoryStorage(backendStorageName string) (*memory.InMemoryStorage, error
} else {
glog.Infof("No backend storage selected")
}
glog.Info("Caching %d stats in memory", statsToCache)
glog.Infof("Caching %d stats in memory", statsToCache)
storageDriver = memory.New(statsToCache, backendStorage)
return storageDriver, nil
}

0 comments on commit 0971262

Please sign in to comment.