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 857bb49
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="0.19.1"
VERSION="0.19.2"

# Detect OS and architecture
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
Expand Down
2 changes: 1 addition & 1 deletion src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"
)

const VERSION = "0.19.1"
const VERSION = "0.19.2"

func main() {
config := LoadConfig()
Expand Down
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 857bb49

Please sign in to comment.