fuse: Remove debug log message

This commit is contained in:
Alexander Neumann 2018-01-13 10:10:07 +01:00
parent 02f4f5dc66
commit d89f2e5226
1 changed files with 0 additions and 1 deletions

View File

@ -182,7 +182,6 @@ func (d *dir) Lookup(ctx context.Context, name string) (fs.Node, error) {
node, ok := d.items[name]
if !ok {
debug.Log(" Lookup(%v) -> not found", name)
debug.Log(" items: %v\n", d.items)
return nil, fuse.ENOENT
}
switch node.Type {