Skip to content

Commit

Permalink
Don't output row logs in debug mode when syncing
Browse files Browse the repository at this point in the history
  • Loading branch information
exAspArk committed Dec 6, 2024
1 parent 8306512 commit 9a645ff
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/storage_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ func (storage *StorageBase) WriteParquetFile(fileWriter source.ParquetFile, pgSc
rowJson, err := json.Marshal(rowMap)
PanicIfError(err)

LogDebug(storage.config, "Parquet row:", string(rowJson))
if err = parquetWriter.Write(string(rowJson)); err != nil {
return 0, fmt.Errorf("Write error: %v", err)
}
Expand Down

0 comments on commit 9a645ff

Please sign in to comment.