1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-11-23 21:44:44 +02:00

Lowercase all log strings (#3173)

from #3161

---------

Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
qwerty287
2024-01-11 19:17:07 +01:00
committed by GitHub
parent f56f9cb1c0
commit b0a2b1cf2d
23 changed files with 82 additions and 81 deletions

View File

@@ -29,7 +29,7 @@ func start(ctx context.Context, store store.Store, activePipeline *model.Pipelin
// call to cancel previous pipelines if needed
if err := cancelPreviousPipelines(ctx, store, activePipeline, repo, user); err != nil {
// should be not breaking
log.Error().Err(err).Msg("Failed to cancel previous pipelines")
log.Error().Err(err).Msg("failed to cancel previous pipelines")
}
if err := store.WorkflowsCreate(activePipeline.Workflows); err != nil {