NiceLogEntry.debug constructor

NiceLogEntry.debug(
  1. String message, {
  2. String? source,
})

Implementation

factory NiceLogEntry.debug(String message, {String? source}) {
  return NiceLogEntry(
    message: message,
    level: NiceLogLevel.debug,
    timestamp: DateTime.now(),
    source: source,
  );
}