parent
433c8111ba
commit
8c302bd236
@ -668,17 +668,17 @@ func genJSONString(b *bolt.Bucket) string {
|
|||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
var f *os.File
|
|
||||||
|
|
||||||
func logToFile(s string) error {
|
func logToFile(s string) error {
|
||||||
return writeToFile("bolt-log", s+"\n", os.O_RDWR|os.O_APPEND)
|
return writeToFile("bolt-log", s+"\n", os.O_RDWR|os.O_APPEND)
|
||||||
}
|
}
|
||||||
|
|
||||||
func writeToFile(fn, s string, mode int) error {
|
func writeToFile(fn, s string, mode int) error {
|
||||||
|
var f *os.File
|
||||||
var err error
|
var err error
|
||||||
if f == nil {
|
if f == nil {
|
||||||
f, err = os.OpenFile(fn, mode, 0660)
|
f, err = os.OpenFile(fn, mode, 0660)
|
||||||
}
|
}
|
||||||
|
defer f.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user