Fix minor bugs

This commit is contained in:
problematicconsumer
2023-09-22 23:54:00 +03:30
parent 92538d137b
commit 28f40ab3cd
2 changed files with 13 additions and 9 deletions

View File

@@ -73,6 +73,11 @@ Future<void> lazyBootstrap(
_ => event,
};
};
options.logger = (level, message, {exception, logger, stackTrace}) {
if (level == SentryLevel.fatal) {
_logger.debug(message);
}
};
},
appRunner: () => _lazyBootstrap(widgetsBinding, container, env),
);