From 55ea197d4f789c5e7563e88aa762bba9a06b5497 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 15 Feb 2023 13:53:43 +0100 Subject: [PATCH] Hide not important log error --- Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs b/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs index f8faa3cc0..d966cafdf 100644 --- a/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs @@ -32,7 +32,7 @@ namespace Flax.Build.Platforms if (Directory.Exists(cppIncludePath)) SystemIncludePaths.Add(cppIncludePath); else - Log.Error($"Missing Clang {ClangVersion} C++ header files location {cppIncludePath}"); + Log.Verbose($"Missing Clang {ClangVersion} C++ header files location {cppIncludePath}"); var clangLibPath = Path.Combine(ToolsetRoot, "usr", "lib", "clang"); var clangIncludePath = Path.Combine(clangLibPath, ClangVersion.Major.ToString(), "include"); if (!Directory.Exists(clangIncludePath))