We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c96860c commit a4380f1Copy full SHA for a4380f1
1 file changed
backend/xray/core.go
@@ -228,10 +228,6 @@ func (c *Core) Start(xConfig *Config, debugMode bool) error {
228
if err != nil {
229
return err
230
}
231
- stderr, err := cmd.StderrPipe()
232
- if err != nil {
233
- return err
234
- }
235
236
// Create a new logger for this core instance
237
c.logger = nodeLogger.New(debugMode)
@@ -262,7 +258,6 @@ func (c *Core) Start(xConfig *Config, debugMode bool) error {
262
258
263
259
// Start capturing process logs
264
260
go c.captureProcessLogs(ctxCore, stdout)
265
- go c.captureProcessLogs(ctxCore, stderr)
266
261
267
return nil
268
0 commit comments