🦠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:
- Info- Informational diagnostic messages 
 
- Warning- Warning messages 
 
- Error- Error messages, usually indicating that something is wrong 
 
Any diagnostic information is written to the BootloaderDebug.log file with the following format:
[<level>] <content>where:
- level- The first letter of the diagnostics level 
 
- content- Any message to be written 
 
Last updated
