Skip to content

Commit

Permalink
Adjusted urPrint to logger::debug according to newest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
konradkusiak97 authored and kbenzie committed Apr 30, 2024
1 parent 08f4c75 commit 2727e8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/adapters/level_zero/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,9 @@ static ur_result_t enqueueMemFillHelper(ur_command_t CommandType,
WaitList.Length, WaitList.ZeEventList));
}

urPrint("calling zeCommandListAppendMemoryCopy() with\n"
" ZeEvent %#" PRIxPTR "\n",
ur_cast<std::uintptr_t>(ZeEvent));
logger::debug("calling zeCommandListAppendMemoryCopy() with"
" ZeEvent {}",
ur_cast<uint64_t>(ZeEvent));
printZeEventList(WaitList);

// Execute command list synchronously.
Expand Down

0 comments on commit 2727e8a

Please sign in to comment.