Local Debugging
Debugging the kernel locally
Locally debugging the kernel allows you to diagnose the kernel directly on the host computer. Debugging information from different kernel components are saved to a kernel debugging log file. Aptivestigate uses the following paths to log the events:
Windows:
%LOCALAPPDATA%/Aptivi/LogsUnix:
~/.config/Aptivi/Logs
The Logs directory doesn't necessarily contain files that pertain to what Nitrocid logs, but you can distinguish them using the Nitrocid name directly after the log_ prefix (e.g. log_Nitrocid_202412300947526611103_1b0264b4-856e-4024-b822-bf384765ae4e.txt).
Structure
The structure of the local debugging log is like the below picture:

Every line in the local debug logs follow the below structure (if debug information is available):
date
The date of the event
time
The time of the event
offset
The time zone offset of the event
level
Logging level
method
The method name in which the message was posted
source
The source code file where the method is found
linenum
The line number from the source file
message
The message
where level is one of:
T: Trace verbose message (asDBG)D: Debug verbose message (asDBG)I: Informational message (asINF)W: Warning message (asWRN)E: Error message (asERR)F: Fatal error message (asFTL)
Debug your Mods
To debug your mods, they must call the debug functions in order for the kernel to acknowledge your message. There are useful functions listed below that may help you debug your routines in your mods.
All writing functions are in the DebugWriter class found under the Nitrocid.Kernel.Debugging namespace.
You can also use the Output window if you've built Nitrocid with VSDEBUG compiler constant, but it has severe performance repercussions.
Here are several ways to debug your mods.
Normal Debugging
Calling the debug function below will post your debug message to the kernel debugger normally. There's a function for you to call below:
Conditional Debugging
Calling the debug function below will post your debug message to the kernel debugger if the condition that you've set within the function is satisfied. There's a function for you to call below:
Privacy-aware Debugging
Calling the debug function below will post your debug message to the kernel debugger normally. However, it also filters every variable you've selected to be censored in the debug log.
For example, if you provide two variables (A, B) and B contains sensitive info, you may want to create an array of indexes which holds B's index (in this case, 1) when calling the below function.
Stack Trace Debugging
Calling the debug function below will post the stack trace of an exception, including its inner exceptions, to the kernel debugger. There's a function for you to call below:
Last updated