From 023357a6b8e5d8577344330bd318515b9100f886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Gul=C3=A1csi?= Date: Thu, 25 Feb 2021 08:38:22 +0100 Subject: [PATCH] Remove log line from Sheet.Put --- commonxl/sheet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commonxl/sheet.go b/commonxl/sheet.go index 57a97b7..19167db 100644 --- a/commonxl/sheet.go +++ b/commonxl/sheet.go @@ -49,7 +49,7 @@ func (s *Sheet) Resize(rows, cols int) { // Put the value at the cell location given. func (s *Sheet) Put(row, col int, value interface{}, fmtNum uint16) { - log.Println(row, col, value, fmtNum) + //log.Println(row, col, value, fmtNum) if row >= s.NumRows || col >= s.NumCols { if grate.Debug { log.Printf("grate: cell out of bounds row %d>=%d, col %d>=%d",