From 857bb49f5908e3d0d64b791192002ab4ea0a6d51 Mon Sep 17 00:00:00 2001 From: exAspArk Date: Fri, 6 Dec 2024 16:22:19 -0500 Subject: [PATCH] Don't output row logs in debug mode when syncing --- scripts/install.sh | 2 +- src/main.go | 2 +- src/storage_base.go | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 86d7a98..0a9e1ec 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION="0.19.1" +VERSION="0.19.2" # Detect OS and architecture OS=$(uname -s | tr '[:upper:]' '[:lower:]') diff --git a/src/main.go b/src/main.go index 262d707..e43062f 100644 --- a/src/main.go +++ b/src/main.go @@ -6,7 +6,7 @@ import ( "time" ) -const VERSION = "0.19.1" +const VERSION = "0.19.2" func main() { config := LoadConfig() diff --git a/src/storage_base.go b/src/storage_base.go index 3e51127..9b6928f 100644 --- a/src/storage_base.go +++ b/src/storage_base.go @@ -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) }