Refactor: Cycles: Remove distinction between severity and verbosity

Only use LOG() and LOG_IS_ON() macros, no more VLOG_.

Pull Request: https://projects.blender.org/blender/blender/pulls/140244
This commit is contained in:
Brecht Van Lommel
2025-06-12 02:19:58 +02:00
parent 8392ca915b
commit fb4e3c8167
68 changed files with 308 additions and 337 deletions

View File

@@ -68,7 +68,7 @@ void TaskScheduler::init(const int num_threads)
}
if (num_threads > 0) {
/* Automatic number of threads. */
VLOG_INFO << "Overriding number of TBB threads to " << num_threads << ".";
LOG(INFO) << "Overriding number of TBB threads to " << num_threads << ".";
global_control = make_unique<tbb::global_control>(tbb::global_control::max_allowed_parallelism,
num_threads);
active_num_threads = num_threads;