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 { } else {
glog.Infof("No backend storage selected") 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) storageDriver = memory.New(statsToCache, backendStorage)
return storageDriver, nil return storageDriver, nil
} }