inomap: remove leftover debug output

This was committed by accident.
This commit is contained in:
Jakob Unterwurzacher 2020-05-03 19:59:47 +02:00
parent 518771e4e2
commit 91f5c242a8
1 changed files with 0 additions and 4 deletions

View File

@ -15,7 +15,6 @@
package inomap
import (
"fmt"
"log"
"sync"
"syscall"
@ -73,9 +72,6 @@ func (m *InoMap) spill(in QIno) (out uint64) {
func (m *InoMap) Translate(in QIno) (out uint64) {
m.Lock()
defer m.Unlock()
defer func() {
fmt.Printf("Translate: %v -> %d\n", in, out)
}()
if in.Ino > maxPassthruIno {
out = m.spill(in)