mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
chore: logging
This commit is contained in:
parent
7cab2b0be7
commit
31ca4a1e02
@ -3,6 +3,7 @@ package routes
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/emvi/logbuch"
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
"github.com/gorilla/schema"
|
"github.com/gorilla/schema"
|
||||||
conf "github.com/muety/wakapi/config"
|
conf "github.com/muety/wakapi/config"
|
||||||
@ -66,7 +67,9 @@ func (h *HomeHandler) buildViewModel(r *http.Request) *view.HomeViewModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if kv, err := h.keyValueSrvc.GetString(conf.KeyNewsbox); err == nil && kv != nil && kv.Value != "" {
|
if kv, err := h.keyValueSrvc.GetString(conf.KeyNewsbox); err == nil && kv != nil && kv.Value != "" {
|
||||||
json.NewDecoder(strings.NewReader(kv.Value)).Decode(&newsbox)
|
if err := json.NewDecoder(strings.NewReader(kv.Value)).Decode(&newsbox); err != nil {
|
||||||
|
logbuch.Error("failed to decode newsbox message - %v", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return &view.HomeViewModel{
|
return &view.HomeViewModel{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user