You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Logging colors are chosen individually for each logged output. But this doesn't make sense. Logging should be based on semantics: Colors should be selected based on how informative the logged information is. So different logging categories like warning, error, but also different info levels are needed: e.g. syscalls being executed is nice to see, but almost never really useful. however certain memory accesses or special syscall events like hiding threads from a debugger need a higher info level.
The text was updated successfully, but these errors were encountered:
You guys probably know about it but spdlog is a great plug 'n play solution for this, I use it everywhere.
I have used spdlog once a few years ago 😂 It has probably changed a lot since. I will definitely check it out and see if it fits into this project. Thank you for the hint :)
Logging colors are chosen individually for each logged output. But this doesn't make sense. Logging should be based on semantics: Colors should be selected based on how informative the logged information is. So different logging categories like warning, error, but also different info levels are needed: e.g. syscalls being executed is nice to see, but almost never really useful. however certain memory accesses or special syscall events like hiding threads from a debugger need a higher info level.
The text was updated successfully, but these errors were encountered: