diff options
author | Kevin Keuning <kkeuning@gmail.com> | 2017-03-05 22:35:41 -0600 |
---|---|---|
committer | Kevin Keuning <kkeuning@gmail.com> | 2017-03-05 22:35:41 -0600 |
commit | 986a2130a59b25fdc7730b3a974d5f5338bd7cb1 (patch) | |
tree | fc39d65aaeadad2acb1ddb96cae4e525201108bb /system/db/content.go | |
parent | 92a96fe470b39ae5c16f66fce8023f04ad3a37ae (diff) |
updated logging
Diffstat (limited to 'system/db/content.go')
-rw-r--r-- | system/db/content.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/db/content.go b/system/db/content.go index 4517fbe..dd93c60 100644 --- a/system/db/content.go +++ b/system/db/content.go @@ -112,8 +112,8 @@ func mergeData(ns string, data url.Values, existingContent []byte) ([]byte, erro var j []byte t, ok := item.Types[ns] if !ok { + log.Println("Type not found from namespace:", ns) return j, errors.New("Invalid type.") - // handle } // Unmarsal the existing values |