From 1893f06bee9a1e5a666b233ef3e146f97db28e1b Mon Sep 17 00:00:00 2001 From: 502647092 Date: Mon, 3 Sep 2018 00:23:30 +0800 Subject: [PATCH] feat: remove debug print --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index b94b4b0..29fadf2 100644 --- a/main.go +++ b/main.go @@ -43,7 +43,6 @@ func startServer(b string) { g.POST("/", func(c *gin.Context) { text = c.Query("text") time, _ = strconv.ParseInt(c.Query("time"), 10, 64) - fmt.Printf("Update Clipboard: %s\n", text) }) g.Run(b) } @@ -72,7 +71,6 @@ func readClipboard(a string) { old = sText updateTime = sTime clipboard.WriteAll(sText) - fmt.Printf("Update Clipboard: %s\n", sText) } } }