SWDEV-485672 - LOG_INFO corrected to LOG_ERROR for errors

Change-Id: I8ab5f2117dfd7725bd4ed8b178e370096aa31018
This commit is contained in:
Jimbo Xie
2024-10-23 01:26:08 -04:00
committed by Jiabao Xie
parent b89977d518
commit 6c755a4116
+1 -1
View File
@@ -432,7 +432,7 @@ bool enableHostcalls(const amd::Device &dev, void* bfr, uint32_t numPackets) {
// For ROCr, create only one signal across all devices (inside hostcallListener->initSignal(dev)) whose pointer is stored in every hostcall buffer
#if defined(WITH_PAL_DEVICE)
else if (!hostcallListener->initDevice(dev)) {
ClPrint(amd::LOG_INFO, (amd::LOG_INIT | amd::LOG_QUEUE | amd::LOG_RESOURCE),
ClPrint(amd::LOG_ERROR, (amd::LOG_INIT | amd::LOG_QUEUE | amd::LOG_RESOURCE),
"failed to initialize device for hostcall");
return false;
}