Skip to content
Snippets Groups Projects
Commit edfbc51f authored by Kamil Trzciński's avatar Kamil Trzciński
Browse files

Merge branch 'fix-logging' into 'master'

Update logging for processing multi runner

See merge request gitlab-org/gitlab-runner!1160
parents 05839b1a 41ba5e9b
No related branches found
No related tags found
No related merge requests found
......@@ -146,11 +146,6 @@ func (mr *RunCommand) processRunner(id int, runner *common.RunnerConfig, runners
executorData, releaseFn, err := mr.acquireRunnerResources(provider, runner)
if err != nil {
mr.log().WithFields(logrus.Fields{
"runner": runner.ShortDescription(),
"executor": runner.Executor,
}).WithError(err).
Warn("Failed to acquire runner resource")
return
}
defer releaseFn()
......@@ -255,7 +250,11 @@ func (mr *RunCommand) processRunners(id int, stopWorker chan bool, runners chan
case runner := <-runners:
err := mr.processRunner(id, runner, runners)
if err != nil {
logrus.WithError(err).Error("Failed to process runner")
mr.log().WithFields(logrus.Fields{
"runner": runner.ShortDescription(),
"executor": runner.Executor,
}).WithError(err).
Error("Failed to process runner")
}
// force GC cycle after processing build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment