Skip to content

Commit

Permalink
Release 1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chipweinberger committed Jul 24, 2023
1 parent d14bfa4 commit cbf5f86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.10.3
* android: handle scan failure. also add verbose log level and remove unused log levels

## 1.10.2
* Dart: fix setLogLevel recursion (Regression in 1.10.0)
* iOS: use NSError instread of obj-c exceptions to avoid uncaught exceptions
Expand Down
5 changes: 1 addition & 4 deletions lib/src/bluetooth_msgs.dart
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
part of flutter_blue_plus;

void _printDbg(String s) {
if (FlutterBluePlus.logLevel.index >= LogLevel.verbose.index) {
//ignore: avoid_print
print(s);
}
FlutterBluePlus._log(LogLevel.verbose, s);
}

enum BmAdapterStateEnum {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_blue_plus
description: Flutter plugin for connecting and communicationg with Bluetooth Low Energy devices, on Android, iOS, and MacOS.
version: 1.10.2
version: 1.10.3
homepage: https://github.com/boskokg/flutter_blue_plus

environment:
Expand Down

0 comments on commit cbf5f86

Please sign in to comment.