From f32457747db26732c5983422ea1762788af1ba66 Mon Sep 17 00:00:00 2001 From: Nan Monnand Deng Date: Fri, 5 Sep 2014 17:42:58 -0400 Subject: [PATCH] glog.Infof() --- storagedriver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storagedriver.go b/storagedriver.go index 9b1fbd83..0009e96a 100644 --- a/storagedriver.go +++ b/storagedriver.go @@ -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 }