🦠Diagnostics
How do you diagnose the bootloader?
GRILO contains diagnostic tools that can be enabled with the Diagnostic messages variable found in the bootloader configuration. It basically saves all the debug information written with the DiagnosticsWriter.WriteDiag() function.
The following diagnostics levels (DiagnosticsLevel enum) are usable:
InfoInformational diagnostic messages
WarningWarning messages
ErrorError messages, usually indicating that something is wrong
Any diagnostic information is written to the BootloaderDebug.log file with the following format:
[<level>] <content>where:
levelThe first letter of the diagnostics level
contentAny message to be written
Last updated