https://github.com/justprodev/flutter_remote_logging
Send Logger() messages to loggly.com
https://github.com/justprodev/flutter_remote_logging
Last synced: 12 months ago
JSON representation
Send Logger() messages to loggly.com
- Host: GitHub
- URL: https://github.com/justprodev/flutter_remote_logging
- Owner: justprodev
- License: mit
- Created: 2023-01-11T14:38:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-05T22:06:34.000Z (about 1 year ago)
- Last Synced: 2025-02-05T23:20:19.733Z (about 1 year ago)
- Language: Dart
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_remote_logging
Sending [Logger()](https://pub.dev/packages/logging) messages to loggly.com
```dart
import 'package:remote_logging/remote_logging.dart';
void main() async {
initLogging(logglyToken, verboseLoggers: ['logger1', 'logger2'], tagsProvider: (record) {
return [
'tag1',
'tag2',
];
});
// https://pub.dev/packages/logging
Logger('logger1').info('info on logger1');
Logger('logger2').info('info on logger2');
Logger.root.severe('error on any logger', Error());
}
```