Change problem matchers output to debug (#363)

This commit is contained in:
Konrad Pabjan
2020-03-12 02:52:46 +01:00
committed by GitHub
parent f9b5d626c5
commit 53fb6297cb

View File

@@ -736,7 +736,7 @@ namespace GitHub.Runner.Worker
var owners = config.Matchers.Select(x => $"'{x.Owner}'"); var owners = config.Matchers.Select(x => $"'{x.Owner}'");
var joinedOwners = string.Join(", ", owners); var joinedOwners = string.Join(", ", owners);
// todo: loc // todo: loc
this.Output($"Added matchers: {joinedOwners}. Problem matchers scan action output for known warning or error strings and report these inline."); this.Debug($"Added matchers: {joinedOwners}. Problem matchers scan action output for known warning or error strings and report these inline.");
} }
} }
@@ -778,7 +778,7 @@ namespace GitHub.Runner.Worker
owners = removedMatchers.Select(x => $"'{x.Owner}'"); owners = removedMatchers.Select(x => $"'{x.Owner}'");
var joinedOwners = string.Join(", ", owners); var joinedOwners = string.Join(", ", owners);
// todo: loc // todo: loc
this.Output($"Removed matchers: {joinedOwners}"); this.Debug($"Removed matchers: {joinedOwners}");
} }
} }