SendLogger constructor

SendLogger(
  1. String appTitle, {
  2. int keepRotateCount = 3,
  3. int rotateAtSizeBytes = 10 * 1024 * 1024,
  4. Duration rotateCheckInterval = const Duration(minutes: 5),
  5. bool logFileInDebugMode = false,
})

Implementation

SendLogger(
  this.appTitle, {
  this.keepRotateCount = 3,
  this.rotateAtSizeBytes = 10 * 1024 * 1024,
  this.rotateCheckInterval = const Duration(minutes: 5),
  this.logFileInDebugMode = false,
}) {
  _logger = Logger(appTitle);
  _setup();
}