debugEverything method

void debugEverything(
  1. bool debug
)

Enables or disables debug logging across all modules and the temp allocator.

Implementation

void debugEverything(bool debug) {
  registeredModules.forEach((d) => d.debug(debug));
  $.debugFree(debug);
  $.debugSync(debug);
}