Skip to content

Commit

Permalink
android sdk updated with service validation in autoConnect Api
Browse files Browse the repository at this point in the history
  • Loading branch information
Erkki Silvola committed Apr 23, 2019
1 parent e0993ee commit a315403
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,13 +311,13 @@ public void onClick(View view) {
new Action() {
@Override
public void run() throws Exception {

Log.d(TAG,"auto connect search complete");
}
},
new Consumer<Throwable>() {
@Override
public void accept(Throwable throwable) throws Exception {

Log.e(TAG,"" + throwable.toString());
}
}
);
Expand Down Expand Up @@ -346,7 +346,7 @@ public void accept(PolarEcgData polarEcgData) throws Exception {
new Consumer<Throwable>() {
@Override
public void accept(Throwable throwable) throws Exception {
Log.e(TAG, ""+throwable.getLocalizedMessage());
Log.e(TAG, ""+throwable.toString());
}
},
new Action() {
Expand Down

0 comments on commit a315403

Please sign in to comment.