aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/inomap/inomap.go4
1 files changed, 0 insertions, 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)