add logging to build
This commit is contained in:
parent
69bc90dc6f
commit
3dafe9a6e2
1 changed files with 5 additions and 1 deletions
|
@ -71,7 +71,11 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
|
|
||||||
protected override string GenerateCommandLineCommands()
|
protected override string GenerateCommandLineCommands()
|
||||||
{
|
{
|
||||||
return $"{Command} {Args}";
|
var commandLineCommands = $"{Command} {Args}";
|
||||||
|
|
||||||
|
LogToolCommand($"[DotNetTool] {commandLineCommands}");
|
||||||
|
|
||||||
|
return commandLineCommands;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void LogToolCommand(string message)
|
protected override void LogToolCommand(string message)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue