From a7c9c6142cd3ff749a1d87a4d4a3eedbdbd3b7df Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Fri, 31 Mar 2023 18:23:24 +0200 Subject: [PATCH] Remove test logs --- Source/Tools/Flax.Build/Build/DotNet/DotNetAOT.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Tools/Flax.Build/Build/DotNet/DotNetAOT.cs b/Source/Tools/Flax.Build/Build/DotNet/DotNetAOT.cs index bad71bfee..81506bced 100644 --- a/Source/Tools/Flax.Build/Build/DotNet/DotNetAOT.cs +++ b/Source/Tools/Flax.Build/Build/DotNet/DotNetAOT.cs @@ -279,7 +279,6 @@ namespace Flax.Build var outputFilePath = assemblyPath + buildPlatform.SharedLibraryFileExtension; if (!File.Exists(outputFilePath) || File.GetLastWriteTime(assemblyPath) > File.GetLastWriteTime(outputFilePath)) { - Log.Error("Run AOT"); if (dotnetAotDebug) { // Increase log readability when spamming log with verbose mode @@ -294,8 +293,6 @@ namespace Flax.Build var deployedFilePath = monoAssembliesOutputPath != null ? Path.Combine(monoAssembliesOutputPath, Path.GetFileName(outputFilePath)) : outputFilePath; if (monoAssembliesOutputPath != null && (!File.Exists(deployedFilePath) || File.GetLastWriteTime(outputFilePath) > File.GetLastWriteTime(deployedFilePath))) { - Log.Error("Copy files"); - // Copy to the destination folder Utilities.FileCopy(assemblyPath, Path.Combine(monoAssembliesOutputPath, Path.GetFileName(assemblyPath))); Utilities.FileCopy(outputFilePath, deployedFilePath);