Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Decreasing log levels for warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Nov 9, 2019
1 parent bd2138d commit 5fe6a05
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rust-grcov",
"version": "0.1.3",
"version": "0.1.4",
"private": false,
"description": "Collect and aggregate code coverage information with the Mozilla grcov tool",
"main": "lib/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function loadUser(path: string): Promise<User> {
try {
contents = yaml.safeLoad(await fs.readFile(path));
} catch (error) {
core.warning(`Unable to load grcov config from the ${path}, falling back to defaults. ${error}`);
core.info(`Unable to load grcov config from the ${path}, falling back to defaults. ${error}`);
}

let user: User = {};
Expand Down
2 changes: 1 addition & 1 deletion src/grcov.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class Grcov {

return new Grcov(path);
} catch (error) {
core.warning('grcov is not installed, installing now');
core.info('grcov is not installed, installing now');
}

const cargo = await Cargo.get();
Expand Down

0 comments on commit 5fe6a05

Please sign in to comment.