diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-04-07 20:36:07 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-04-07 20:36:07 -0700 |
commit | afe92b2bcd3b8e914496006a414ad9b95dba3f0b (patch) | |
tree | 40aca87652d696db10d37eb19c4049528b8d7519 /system/db/init.go | |
parent | ba201f640c883d5ed2f3e1f68daff3a7ee4c8b9f (diff) |
add initial implementation of api search handler with full-text search by type
Diffstat (limited to 'system/db/init.go')
-rw-r--r-- | system/db/init.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/db/init.go b/system/db/init.go index a598fa7..4e9c3cf 100644 --- a/system/db/init.go +++ b/system/db/init.go @@ -82,7 +82,7 @@ func Init() { for t := range item.Types { err := MapSearchIndex(t) if err != nil { - log.Fatalln("[search] Error:", err) + log.Fatalln(err) return } |