mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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>
This commit is contained in:
parent
91b56a7c26
commit
23a18b5f93
1 changed files with 0 additions and 1 deletions
|
@ -67,7 +67,6 @@ func (s *VolumeStore) Create(name, driverName string, opts map[string]string) (v
|
||||||
v := vc.Volume
|
v := vc.Volume
|
||||||
return v, nil
|
return v, nil
|
||||||
}
|
}
|
||||||
logrus.Debugf("Registering new volume reference: driver %s, name %s", driverName, name)
|
|
||||||
|
|
||||||
vd, err := volumedrivers.GetDriver(driverName)
|
vd, err := volumedrivers.GetDriver(driverName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue