Skip to content

Commit 5b9a919

Browse files
committed
Use 'Information' rather than 'Error' to display error message when uploading coverage file
1 parent eccebb9 commit 5b9a919

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ Task("Upload-Coverage-Result-Coveralls")
318318
}
319319
}).OnError (exception =>
320320
{
321-
Error(exception.Message);
321+
Information(exception.Message);
322322
Information($"Failed to upload coverage result to Coveralls, but continuing with next Task...");
323323
publishingError = true;
324324
});
@@ -343,7 +343,7 @@ Task("Upload-Coverage-Result-Codecov")
343343
}
344344
}).OnError (exception =>
345345
{
346-
Error(exception.Message);
346+
Information(exception.Message);
347347
Information($"Failed to upload coverage result to Codecov, but continuing with next Task...");
348348
publishingError = true;
349349
});

0 commit comments

Comments
 (0)