From 67986a7832dcbda29de5c1341b3dec6c6d97511a Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Thu, 27 Feb 2020 09:28:46 +0100 Subject: [PATCH] chore: remove debug code (#788) --- sqlite3_trace.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/sqlite3_trace.go b/sqlite3_trace.go index 2ebedef..4c8d992 100644 --- a/sqlite3_trace.go +++ b/sqlite3_trace.go @@ -215,7 +215,6 @@ func addTraceMapping(connHandle uintptr, traceConf TraceConfig) { traceConf, connHandle, oldEntryCopy.config)) } traceMap[connHandle] = traceMapEntry{config: traceConf} - fmt.Printf("Added trace config %v: handle 0x%x.\n", traceConf, connHandle) } func lookupTraceMapping(connHandle uintptr) (TraceConfig, bool) { @@ -234,7 +233,6 @@ func popTraceMapping(connHandle uintptr) (TraceConfig, bool) { entryCopy, found := traceMap[connHandle] if found { delete(traceMap, connHandle) - fmt.Printf("Pop handle 0x%x: deleted trace config %v.\n", connHandle, entryCopy.config) } return entryCopy.config, found }