Use formatting glog.Info

This commit is contained in:
Victor Marmol 2015-04-15 13:55:37 -07:00
parent 25f3124155
commit 82034c1fb0

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
}