We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab836cd commit 3cb17b0Copy full SHA for 3cb17b0
src/FlubuCore/Tasks/Process/RunProgramTask.cs
@@ -250,8 +250,9 @@ protected override int DoExecute(ITaskContextInternal context)
250
commandArgs = !arg.maskArg ? $"{commandArgs} {arg.arg}" : $"{commandArgs} ####";
251
}
252
253
- DoLogInfo($"Running program from '{Path.GetFullPath(workingFolder)}':");
254
- DoLogInfo($"{cmd}{commandArgs}{Environment.NewLine}", Color.DarkCyan);
+ //// do not change to DoLogInfo as this log is important and it should be always loged.
+ context.LogInfo($"Running program from '{Path.GetFullPath(workingFolder)}':");
255
+ context.LogInfo($"{cmd}{commandArgs}{Environment.NewLine}", Color.DarkCyan);
256
257
int res = command.Execute()
258
.ExitCode;
0 commit comments