diff --git a/export/cell.go b/export/cell.go index f90ce54..a85d494 100644 --- a/export/cell.go +++ b/export/cell.go @@ -27,7 +27,6 @@ type CellLocation struct { func (e *Exporter) SetCell(sheet string, cell Cell) { start_col, end_col := e.CaculateCell(cell.Location, cell.Rowspan, cell.Colspan) - fmt.Println(sheet, start_col, end_col, cell.Value) if start_col != end_col { e.xlsx.MergeCell(sheet, start_col, end_col) }