- Fixed assembly logging style.

- Fixed double logging during execution.
This commit is contained in:
MapleWheels
2026-04-10 10:48:55 -04:00
parent c3a9551683
commit 9250e27953
3 changed files with 11 additions and 24 deletions
@@ -186,14 +186,13 @@ public partial class LoggerService : ILoggerService
else
{
LogError($"FluentResults::IError: {error.Message}");
}
if (error.Reasons != null)
{
foreach (var reason in error.Reasons)
/*if (error.Reasons != null)
{
LogError($" - {reason.Message}");
}
foreach (var reason in error.Reasons)
{
LogError($" - {reason.Message}");
}
}*/
}
}
}
@@ -357,11 +357,7 @@ public sealed class PackageManagementService : IPackageManagementService
{
_runningPackages[package.Key] = package.Value;
}
if (result.IsFailed)
{
_logger.LogResults(result);
}
return result;
}