Better logging, tracing
dd86k opened this issue · 0 comments
dd86k commented
Right now, trace logs are only written to stdout, logging is very minimal, and somewhat messy.
Issues:
- Alicedbg does not offer logging facilities.
- Both the debugger and dumper module lack proper logging formats when it comes to debugging either apps.
- Trace builds spam stdout, reducing visibility when debugging.
- A little difficult to differentiate between debugger output from debuggee output.
Options:
- Provide logging callbacks for Issue 1.
- Have tracing output to a
alicedbg.log
file for Issue 3.
Solutions:
- Shell: Debug events can be formatted
[adbg] event: message
.- Fixes Issue 2 and 4.
- Shell: Debugger messages (verbose) can be formatted
[adbg] debugger: message
.- Fixes Issue 2 and 4.
- Dumper: Can be formatted
dumper: message
.- Fixes Issue 2.
- Trace output can be written to
alicedbg.log
and/oralicedump.log
.- Fixes Issue 3.