Fix debug sync log line

Signed-off-by: Ivan Valdes <ivan@vald.es>
pull/904/head
Ivan Valdes 2025-02-10 14:32:07 -08:00
parent ca69ea0c2c
commit 7eb11b0d67
No known key found for this signature in database
GPG Key ID: 4037D37741ED0CC5
1 changed files with 1 additions and 1 deletions

2
db.go
View File

@ -1080,7 +1080,7 @@ func safelyCall(fn func(*Tx) error, tx *Tx) (err error) {
// then it allows you to force the database file to sync against the disk.
func (db *DB) Sync() (err error) {
if lg := db.Logger(); lg != discardLogger {
lg.Debug("Syncing bbolt db (%s)", db.path)
lg.Debugf("Syncing bbolt db (%s)", db.path)
defer func() {
if err != nil {
lg.Errorf("[GOOS: %s, GOARCH: %s] syncing bbolt db (%s) failed: %v", runtime.GOOS, runtime.GOARCH, db.path, err)