Skip to content

Commit

Permalink
UserspaceEmulator: Move exit() syscall logging to debug output
Browse files Browse the repository at this point in the history
We want the emulated program to appear without noise in the terminal.
  • Loading branch information
awesomekling committed Jul 12, 2020
1 parent 1d32c66 commit 617655d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DevTools/UserspaceEmulator/Emulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 617655d

Please sign in to comment.