Skip to content

Commit

Permalink
volume: store: store.go: remove debug message
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
runcom committed Dec 21, 2015
1 parent 91b56a7 commit 23a18b5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion volume/store/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 23a18b5

Please sign in to comment.