-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C#: Logging #16200
C#: Logging #16200
Conversation
Yes, I think we should change those as well. (Maybe I wouldn't do it for |
03e00a2
to
8915241
Compare
{ | ||
lastArgs = args; | ||
output = this.output; | ||
return Success; | ||
} | ||
|
||
public bool RunCommand(string args, string? workingDirectory, out IList<string> output) | ||
public bool RunCommand(string args, string? workingDirectory, out IList<string> output, bool silent) |
Check notice
Code scanning / CodeQL
Local scope variable shadows member Note test
Replaced some
LogInfo
withLogDebug
(some of the more chattyLogInfo
).@tamasvajk : Should we consider to use
LogDebug
when executing commands (most of theonOut
callbacks - prints as Info)?