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))