diff --git a/shared/source/os_interface/windows/wddm/wddm.cpp b/shared/source/os_interface/windows/wddm/wddm.cpp index aadb6e5f7f..9299f3f989 100644 --- a/shared/source/os_interface/windows/wddm/wddm.cpp +++ b/shared/source/os_interface/windows/wddm/wddm.cpp @@ -753,6 +753,10 @@ bool Wddm::createContext(OsContextWin &osContext) { status = getGdi()->createContext(&CreateContext); osContext.setWddmContextHandle(CreateContext.hContext); + printDebugString(DebugManager.flags.PrintDebugMessages.get(), stdout, + "\nCreated Wddm context. Status: :%lu, engine: %u, contextId: %u, deviceBitfield: %lu \n", + status, osContext.getEngineType(), osContext.getContextId(), osContext.getDeviceBitfield().to_ulong()); + return status == STATUS_SUCCESS; }