sentry_logging 6.5.0-beta.1 sentry_logging: ^6.5.0-beta.1 copied to clipboard
An integration which adds support for recording log from the logging package.
Sentry integration for logging
package #
package | build | pub | likes | popularity | pub points |
---|---|---|---|---|---|
sentry_logging |
Integration for the logging
package.
Usage
-
Sign up for a Sentry.io account and get a DSN at http://sentry.io.
-
Follow the installing instructions on pub.dev.
-
Initialize the Sentry SDK using the DSN issued by Sentry.io and add the
LoggingIntegration
import 'package:sentry/sentry.dart';
Future<void> main() async {
await Sentry.init(
(options) {
options.dsn = 'https://example@sentry.io/example';
options.addIntegration(LoggingIntegration());
},
appRunner: initApp, // Init your App.
);
}
void initApp() {
// your app code
}