glog.Infof()

This commit is contained in:
Nan Monnand Deng 2014-09-05 17:42:58 -04:00
parent f3f098f3d2
commit f32457747d

View File

@ -87,7 +87,7 @@ func NewStorageDriver(driverName string) (*memory.InMemoryStorage, error) {
if err != nil {
return nil, err
}
glog.V(2).Infof("Caching %d recent stats in memory; using %v storage driver\n", samplesToCache, driverName)
glog.Infof("Caching %d recent stats in memory; using %v storage driver\n", samplesToCache, driverName)
storageDriver = memory.New(samplesToCache, samplesToCache, backendStorage)
return storageDriver, nil
}