LoggingManager constructor

LoggingManager(
  1. SystemManager systemManager,
  2. ResourceManager resourceManager,
  3. Config config
)

Implementation

LoggingManager(this.systemManager, this.resourceManager, this.config) {
  HttpRequestManager.isPost = config.requestMethod == 'POST';
  _queueSize = config.queueSize;
  _retryLogging = config.retryLogging;
  _retryDelay = Duration(microseconds: config.retryDelay);
}