mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +00:00
UserspaceEmulator: Move exit() syscall logging to debug output
We want the emulated program to appear without noise in the terminal.
This commit is contained in:
parent
1d32c66dde
commit
617655db0d
Notes:
sideshowbarker
2024-07-19 04:53:07 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/617655db0d2
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ u32 Emulator::virt$read(int fd, FlatPtr buffer, ssize_t size)
|
|||
|
||||
void Emulator::virt$exit(int status)
|
||||
{
|
||||
out() << "exit(" << status << "), shutting down!";
|
||||
dbg() << "exit(" << status << "), shutting down!";
|
||||
m_exit_status = status;
|
||||
m_shutdown = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue