Hide not important log error

This commit is contained in:
Wojtek Figat
2023-02-15 13:53:43 +01:00
parent d48f61ea33
commit 55ea197d4f

View File

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