Removed the use of log and reorder the import items

Signed-off-by: Benjamin Wang <wachao@vmware.com>
pull/365/head
Benjamin Wang 2022-12-27 13:05:12 +08:00
parent 329eba7818
commit f8dc40c033
2 changed files with 3 additions and 4 deletions

View File

@ -5,8 +5,6 @@ import (
"encoding/binary" "encoding/binary"
"errors" "errors"
"fmt" "fmt"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"log" "log"
"math/rand" "math/rand"
"os" "os"
@ -15,6 +13,8 @@ import (
"testing" "testing"
"testing/quick" "testing/quick"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
bolt "go.etcd.io/bbolt" bolt "go.etcd.io/bbolt"
) )

3
db.go
View File

@ -4,7 +4,6 @@ import (
"errors" "errors"
"fmt" "fmt"
"hash/fnv" "hash/fnv"
"log"
"os" "os"
"runtime" "runtime"
"sort" "sort"
@ -552,7 +551,7 @@ func (db *DB) close() error {
if !db.readOnly { if !db.readOnly {
// Unlock the file. // Unlock the file.
if err := funlock(db); err != nil { if err := funlock(db); err != nil {
log.Printf("bolt.Close(): funlock error: %s", err) return fmt.Errorf("bolt.Close(): funlock error: %w", err)
} }
} }