diff options
Diffstat (limited to 'worker.go')
| -rw-r--r-- | worker.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -109,7 +109,7 @@ func (w *Worker) Listen(queue chan any) { Headers: make(map[string]string), Body: "server error", } - log.Println("could not read a request body") + log.Println("could not read a request body:", err) return } w.lua.PushString(string(body)) @@ -122,7 +122,7 @@ func (w *Worker) Listen(queue chan any) { Headers: make(map[string]string), Body: "server error", } - log.Println("could not read a request body") + log.Println("could not read a request body:", err) return } |
