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"
"errors"
"fmt"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"log"
"math/rand"
"os"
@ -15,6 +13,8 @@ import (
"testing"
"testing/quick"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
bolt "go.etcd.io/bbolt"
)

3
db.go
View File

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