Merge pull request #98 from aaronlehmann/logs-padding-underflow

service: Avoid underflow in logs padding calculation
This commit is contained in:
Sebastiaan van Stijn 2017-05-16 23:36:25 +02:00 committed by GitHub
commit ebbab14224
1 changed files with 6 additions and 2 deletions

View File

@ -204,8 +204,12 @@ func (f *taskFormatter) format(ctx context.Context, logCtx logContext) (string,
}
}
padding := strings.Repeat(" ", f.padding-getMaxLength(task.Slot))
formatted := fmt.Sprintf("%s@%s%s", taskName, nodeName, padding)
paddingCount := f.padding - getMaxLength(task.Slot)
padding := ""
if paddingCount > 0 {
padding = strings.Repeat(" ", paddingCount)
}
formatted := taskName + "@" + nodeName + padding
f.cache[logCtx] = formatted
return formatted, nil
}