logLifecycle static method

void logLifecycle(
  1. String tag,
  2. String message
)

Logs a lifecycle event (init, dispose) for a module.

Implementation

static void logLifecycle(String tag, String message) {
  _log(NitroLogLevel.verbose, tag, message);
}