From 6c755a411648c892d917d2415c5e646ab1e37fe3 Mon Sep 17 00:00:00 2001 From: Jimbo Xie Date: Wed, 23 Oct 2024 01:26:08 -0400 Subject: [PATCH] SWDEV-485672 - LOG_INFO corrected to LOG_ERROR for errors Change-Id: I8ab5f2117dfd7725bd4ed8b178e370096aa31018 --- rocclr/device/devhostcall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocclr/device/devhostcall.cpp b/rocclr/device/devhostcall.cpp index 3c8233f73e..e385047c51 100644 --- a/rocclr/device/devhostcall.cpp +++ b/rocclr/device/devhostcall.cpp @@ -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; }