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:
@@ -144,10 +144,10 @@ static void device_iterator_cb(const char *id,
|
||||
info.has_execution_optimization = has_execution_optimization;
|
||||
|
||||
devices->push_back(info);
|
||||
VLOG_INFO << "Added device \"" << info.description << "\" with id \"" << info.id << "\".";
|
||||
LOG(INFO) << "Added device \"" << info.description << "\" with id \"" << info.id << "\".";
|
||||
|
||||
if (info.denoisers & DENOISER_OPENIMAGEDENOISE) {
|
||||
VLOG_INFO << "Device with id \"" << info.id << "\" supports "
|
||||
LOG(INFO) << "Device with id \"" << info.id << "\" supports "
|
||||
<< denoiserTypeToHumanReadable(DENOISER_OPENIMAGEDENOISE) << ".";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user