1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

UserspaceEmulator: Use a report() function instead of dbgprintf()

Ultimately we'll want to make it a bit easier to add more reporting.
This at least makes it easier to redirect the logging.
This commit is contained in:
Andreas Kling 2020-07-31 18:54:30 +02:00
parent 628b3badfb
commit c7e4c0734b
4 changed files with 40 additions and 30 deletions

View file

@ -140,4 +140,6 @@ private:
FlatPtr m_free_symbol_end { 0 };
};
void report(const char*, ...);
}