diff options
Diffstat (limited to 'dictionary.go')
| -rw-r--r-- | dictionary.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dictionary.go b/dictionary.go index 836f3cd..c8e21b8 100644 --- a/dictionary.go +++ b/dictionary.go @@ -133,7 +133,7 @@ func (dict *dictionary) store() (err error) { if err != nil { errc := f.Close() if errc != nil { - log.Println("dictionary: store: ", err) + log.Println("dictionary: store: create:", err) } return err } @@ -143,14 +143,14 @@ func (dict *dictionary) store() (err error) { if err != nil { errc := f.Close() if errc != nil { - log.Println("dictionary: store: ", err) + log.Println("dictionary: store: encode:", err) } return err } errc := f.Close() if errc != nil { - log.Println("dictionary: store: ", err) + log.Println("dictionary: store: close:", err) } err = libos.Copy(dict.storagePath, newStorage) |
