From 0e4b4c2aa219ed23ac7fe03b6b4196146ae7e8e3 Mon Sep 17 00:00:00 2001 From: Ethan Chee <61472206+ethancheez@users.noreply.github.com> Date: Mon, 28 Oct 2024 07:11:10 -1000 Subject: [PATCH] Fix Logger in baremetal fatalhandler (#2986) --- Svc/FatalHandler/FatalHandlerComponentBaremetalImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Svc/FatalHandler/FatalHandlerComponentBaremetalImpl.cpp b/Svc/FatalHandler/FatalHandlerComponentBaremetalImpl.cpp index b92ca49965..f5c2185cee 100644 --- a/Svc/FatalHandler/FatalHandlerComponentBaremetalImpl.cpp +++ b/Svc/FatalHandler/FatalHandlerComponentBaremetalImpl.cpp @@ -19,7 +19,7 @@ namespace Svc { const NATIVE_INT_TYPE portNum, FwEventIdType Id) { // for **nix, delay then exit with error code - Os::Log::log("FATAL %d handled.\n",Id); + Fw::Logger::log("FATAL %d handled.\n",Id); while (true) {} // Returning might be bad }