Skip to content

Commit

Permalink
Fix Logger in baremetal fatalhandler (#2986)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethancheez authored Oct 28, 2024
1 parent 40583c1 commit 0e4b4c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Svc/FatalHandler/FatalHandlerComponentBaremetalImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 0e4b4c2

Please sign in to comment.