summaryrefslogtreecommitdiff
path: root/system/db/content.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-10-24 15:42:35 -0700
committerSteve Manuel <nilslice@gmail.com>2016-10-24 15:42:35 -0700
commit5d7ac0a00e9f4c33e095be9be4d79ae302c0c4c4 (patch)
treedbf226a46cf426bd73bbf77ff1e0773ce12f8e14 /system/db/content.go
parent30d20c99a641dcd685221d6ddfa1e101f7672d1b (diff)
removing debug printlns and modifying other fmt.Println to log.Println for consistency
Diffstat (limited to 'system/db/content.go')
-rw-r--r--system/db/content.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/db/content.go b/system/db/content.go
index 2d6e8ea..9ab1f89 100644
--- a/system/db/content.go
+++ b/system/db/content.go
@@ -178,7 +178,7 @@ func Content(target string) ([]byte, error) {
b := tx.Bucket([]byte(ns))
_, err := val.Write(b.Get([]byte(id)))
if err != nil {
- fmt.Println(err)
+ log.Println(err)
return err
}