Closed
Description
The UEFI and bios loggers use only the framebuffer.
This can be an issue during headless runs (server with no display, unit tests)
I propose we refactor the logger to support multiple methods of logging output. (Serial being the first idea), with support in the kernel configuration to enable/disable sources. Or a text config file (this is likely better, so it can be configured at runtime)
This would also allow us to separate the logging and framebuffer init, as well be able to add/remove loggers at will. Rather than using writeln
for early logging, we will be able to initialize the logger before anything else, and configure it with the optional config.txt
or a default config that matches the current behavior.