From 91f5c242a8f4527f3266c09d7f18ff997593bafa Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 3 May 2020 19:59:47 +0200 Subject: [PATCH] inomap: remove leftover debug output This was committed by accident. --- internal/inomap/inomap.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/inomap/inomap.go b/internal/inomap/inomap.go index 0ca43e4..d3177ae 100644 --- a/internal/inomap/inomap.go +++ b/internal/inomap/inomap.go @@ -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)