e static method

Future<void> e({
  1. String? tag,
  2. required String msg,
  3. int stackDepth = 50,
  4. int logType = 2,
  5. bool writeFile = false,
})

Implementation

static Future<void> e({String? tag, required String msg, int stackDepth = 50, int logType = 2, bool writeFile = false}) async {
  await log('e', tag, msg, stackDepth, logType, writeFile);
}