From 4293d2a9ac0647da5c18aa07458909c90921671a Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 19 Mar 2024 20:57:14 +0200 Subject: [PATCH] Update logging --- core/memory/vma.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/memory/vma.cpp b/core/memory/vma.cpp index 6b2ba81..fbae18f 100644 --- a/core/memory/vma.cpp +++ b/core/memory/vma.cpp @@ -445,7 +445,7 @@ namespace Memory if (vmm.Check((void *)va, PTFlag::US)) continue; - fixme("Unable to get address %#lx, page is not user accessible", va); + debug("Unable to get address %#lx, page is not user accessible", va); return nullptr; } @@ -460,7 +460,7 @@ namespace Memory if (vmm.Check(Address, PTFlag::US)) return 0; - error("Address %#lx is not user accessible", Address); + debug("Address %#lx is not user accessible", Address); return -EFAULT; }