Fix: Cycles log levels conflict with macros on some platforms

In particular DEBUG, but prefix all of them to be sure.

Pull Request: https://projects.blender.org/blender/blender/pulls/141749
This commit is contained in:
Brecht Van Lommel
2025-07-10 19:44:14 +02:00
committed by Brecht Van Lommel
parent 2b86b32fc3
commit 73fe848e07
93 changed files with 660 additions and 651 deletions

View File

@@ -22,7 +22,7 @@ void DebugFlags::CPU::reset()
do { \
flag = (getenv(env) == nullptr); \
if (!flag) { \
LOG(INFO) << "Disabling " << STRINGIFY(flag) << " instruction set."; \
LOG_INFO << "Disabling " << STRINGIFY(flag) << " instruction set."; \
} \
} while (0)