remove tmp logs && debug output fix

This commit is contained in:
Sergei Vizel 2018-09-18 13:51:05 +03:00
parent 88420d4737
commit f9d710b126
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ import (
)
func debugJson(v interface{}) string {
b, _ := json.MarshalIndent(v, "", " ")
b, _ := json.MarshalIndent(v, "", " ")
return string(b)
}
@ -20,7 +20,7 @@ type DebugExtension struct {
func NewDebugExtension(out io.Writer) *DebugExtension {
li := log.New(out, "InMsg", 0)
lo := log.New(out, "outMsg", 0)
lo := log.New(out, "OutMsg", 0)
return &DebugExtension{in: li, out: lo}
}

View File

@ -315,10 +315,10 @@ func (w *Websocket) Subscribe(channel string) (*subscription.Subscription, error
//todo timeout here
err := <-subRes
if err != nil {
log.Println(err)
//log.Println(err)
return nil, err
}
log.Println(sub)
//log.Println(sub)
return sub, nil
}