1
0
mirror of https://github.com/pbnjay/grate.git synced 2025-03-04 08:08:05 +02:00

Remove log line from Sheet.Put

This commit is contained in:
Tamás Gulácsi 2021-02-25 08:38:22 +01:00 committed by Jeremy Jay
parent 0767bc147e
commit 023357a6b8

View File

@ -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",