diff --git a/Source/Tools/Flax.Build/Utilities/Utilities.cs b/Source/Tools/Flax.Build/Utilities/Utilities.cs index d731dcec5..a81072cff 100644 --- a/Source/Tools/Flax.Build/Utilities/Utilities.cs +++ b/Source/Tools/Flax.Build/Utilities/Utilities.cs @@ -384,7 +384,11 @@ namespace Flax.Build Stopwatch stopwatch = Stopwatch.StartNew(); if (!options.HasFlag(RunOptions.NoLoggingOfRunCommand)) { - Log.Verbose("Running: " + app + (string.IsNullOrEmpty(commandLine) ? "" : " " + commandLine)); + var msg = "Running: " + app + (string.IsNullOrEmpty(commandLine) ? "" : " " + commandLine); + if (options.HasFlag(RunOptions.ConsoleLogOutput)) + Log.Info(msg); + else + Log.Verbose(msg); } bool redirectStdOut = (options & RunOptions.NoStdOutRedirect) != RunOptions.NoStdOutRedirect;