-
Notifications
You must be signed in to change notification settings - Fork 369
Open
Description
Library has own Logger class, that collide with default dart logger class name:
import 'package:flutter_reactive_ble/flutter_reactive_ble.dart' hide Logger;
import 'package:logging/logging.dart';
FlutterReactiveBle ble = FlutterReactiveBle();
void main() {
Logger.root.level = Level.INFO;
Logger.root.onRecord.listen((record) {
print('${record.level.name}: ${record.time}: ${record.loggerName}: ${record.message}');
});
runApp(UniversalDriverDemoApp());
}- Is there some reason why library has own logging functionality?
- Can/should we somehow connect it with default dart logger?
- Or will be better to switch library to default one instead custom implementation?
BenelliFurtado
Metadata
Metadata
Assignees
Labels
No labels