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}
}