log method

void log({
  1. String? tag,
  2. bool alwaysPrint = false,
})

Legacy method for backwards compatibility.

Implementation

void log({String? tag, bool alwaysPrint = false}) {
  JetLogger.dumpTrace(
    this,
    title: tag ?? 'StackTrace',
    alwaysPrint: alwaysPrint,
  );
}