Merge pull request #649 from vmarmol/events

Use formatting glog.Info
This commit is contained in:
Rohit Jnagal 2015-04-15 14:05:46 -07:00
commit 0971262de0

View File

@ -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
}