1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-10 13:29:02 +00:00

comments about generic debug_* flags, also added debug_info

This commit is contained in:
Zeno Rogue
2025-10-19 16:45:37 +02:00
parent ceb3be4228
commit c2e3b62a53

View File

@@ -23,11 +23,18 @@ void add_debugflag(const string& s, debugflag *d) {
(*all_debugflags)[s] = d;
}
/** generic errors */
EX debugflag debug_errors = {"error", true};
/** generic warnings */
EX debugflag debug_warnings = {"warning", true};
/** generic memory logs */
EX debugflag debug_memory = {"memory"};
/** generic initialization logs */
EX debugflag debug_init = {"init", true};
/** generic progress logs */
EX debugflag debug_progress = {"progress", true};
/** log the results of executed commands */
EX debugflag debug_info = {"info", true};
#if HDR
template<class... T>