summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/server/plugin.go18
-rw-r--r--tests/plugins/http/http_plugin_test.go2
2 files changed, 10 insertions, 10 deletions
diff --git a/plugins/server/plugin.go b/plugins/server/plugin.go
index 18a3a316..99d93d19 100644
--- a/plugins/server/plugin.go
+++ b/plugins/server/plugin.go
@@ -234,12 +234,12 @@ func (server *Plugin) collectEvents(event interface{}) {
if we, ok := event.(events.WorkerEvent); ok {
switch we.Event {
case events.EventWorkerError:
- server.log.Error(we.Payload.(error).Error(), "pid", we.Worker.(worker.BaseProcess).Pid())
- case events.EventWorkerStderr:
- // TODO unsafe byte to string convertation
- server.log.Debug("worker stderr", "pid", we.Worker.(worker.BaseProcess).Pid(), "message", string(we.Payload.([]byte)))
+ server.log.Error(strings.TrimRight(we.Payload.(error).Error(), " \n\t"))
case events.EventWorkerLog:
- server.log.Debug(strings.TrimRight(string(we.Payload.([]byte)), " \n\t"), "pid", we.Worker.(worker.BaseProcess).Pid())
+ server.log.Debug(strings.TrimRight(string(we.Payload.([]byte)), " \n\t"))
+ case events.EventWorkerStderr:
+ // TODO unsafe byte to string convert
+ server.log.Debug(strings.TrimRight(string(we.Payload.([]byte)), " \n\t"))
}
}
}
@@ -248,12 +248,12 @@ func (server *Plugin) collectWorkerLogs(event interface{}) {
if we, ok := event.(events.WorkerEvent); ok {
switch we.Event {
case events.EventWorkerError:
- server.log.Error(we.Payload.(error).Error(), "pid", we.Worker.(worker.BaseProcess).Pid())
+ server.log.Error(strings.TrimRight(we.Payload.(error).Error(), " \n\t"))
case events.EventWorkerLog:
- server.log.Debug(strings.TrimRight(string(we.Payload.([]byte)), " \n\t"), "pid", we.Worker.(worker.BaseProcess).Pid())
+ server.log.Debug(strings.TrimRight(string(we.Payload.([]byte)), " \n\t"))
case events.EventWorkerStderr:
- // TODO unsafe byte to string convertation
- server.log.Debug("worker stderr", "pid", we.Worker.(worker.BaseProcess).Pid(), "message", string(we.Payload.([]byte)))
+ // TODO unsafe byte to string convert
+ server.log.Debug(strings.TrimRight(string(we.Payload.([]byte)), " \n\t"))
}
}
}
diff --git a/tests/plugins/http/http_plugin_test.go b/tests/plugins/http/http_plugin_test.go
index b0bcd849..9cd1c147 100644
--- a/tests/plugins/http/http_plugin_test.go
+++ b/tests/plugins/http/http_plugin_test.go
@@ -1025,7 +1025,7 @@ logs:
controller := gomock.NewController(t)
mockLogger := mocks.NewMockLogger(controller)
- mockLogger.EXPECT().Debug("worker stderr", "pid", gomock.Any(), "message", gomock.Any()).AnyTimes()
+ mockLogger.EXPECT().Debug(gomock.Any()).AnyTimes()
mockLogger.EXPECT().Debug("worker destructed", "pid", gomock.Any()).MinTimes(1)
mockLogger.EXPECT().Debug("worker constructed", "pid", gomock.Any()).MinTimes(1)
mockLogger.EXPECT().Debug("", "remote", gomock.Any(), "ts", gomock.Any(), "resp.status", gomock.Any(), "method", gomock.Any(), "uri", gomock.Any()).MinTimes(1)