Log.debug constructor

Log.debug(
  1. dynamic msg, {
  2. Entity? to,
  3. String? desc,
  4. Color color = Color.Red,
})

Log.debug can be used to highlight a important debug message in bold red

Implementation

Log.debug(this.msg, {this.to, this.desc, this.color = Color.Red})
    : _type = _LogType.DEBUG {
  to ??= Entity.All();
}