warn static method

void warn(
  1. dynamic message, {
  2. DateTime? time,
  3. Object? error,
  4. StackTrace? stackTrace,
  5. bool isReport = true,
  6. required String actionModule,
  7. required String actionName,
})

Implementation

static void warn(dynamic message, {DateTime? time, Object? error, StackTrace? stackTrace, bool isReport = true, required String actionModule, required String actionName}) {
  if (TCICLog.shouldExclude(message)) return;
  debugPrint('[WARN][$actionModule][$actionName] $message');
}