Browse Source

volume: store: store.go: remove debug message

When driver is `local` an empty string is given to the debug message.
This patch removes the debug statement.

```
Dec 20 19:07:01 localhost.localdomain docker[19734]:
time="2015-12-20T19:07:01.872021857+01:00" level=debug msg="Registering
new volume reference: driver , name
c2291b964b4d7b1b51ec51d2ccfe2544f83fd23404709225a43743c5faadad55"
```

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
Antonio Murdaca 9 years ago
parent
commit
23a18b5f93
1 changed files with 0 additions and 1 deletions
  1. 0 1
      volume/store/store.go

+ 0 - 1
volume/store/store.go

@@ -67,7 +67,6 @@ func (s *VolumeStore) Create(name, driverName string, opts map[string]string) (v
 		v := vc.Volume
 		return v, nil
 	}
-	logrus.Debugf("Registering new volume reference: driver %s, name %s", driverName, name)
 
 	vd, err := volumedrivers.GetDriver(driverName)
 	if err != nil {