add logging to build

This commit is contained in:
Jon Sequeira 2017-03-06 22:10:37 -08:00
parent 69bc90dc6f
commit 3dafe9a6e2

View file

@ -71,7 +71,11 @@ namespace Microsoft.DotNet.Cli.Build
protected override string GenerateCommandLineCommands()
{
return $"{Command} {Args}";
var commandLineCommands = $"{Command} {Args}";
LogToolCommand($"[DotNetTool] {commandLineCommands}");
return commandLineCommands;
}
protected override void LogToolCommand(string message)