Skip to content

Commit

Permalink
Merge pull request #397 from NordicSemiconductor/bugfix/376
Browse files Browse the repository at this point in the history
Readme fixed
  • Loading branch information
philips77 committed Jun 7, 2022
2 parents e3eeeb8 + d0b13d7 commit 60b8b90
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion moustache/README.mo
Expand Up @@ -165,8 +165,14 @@ The `BleManager` must be extended with your implementation where you define the

```java
class MyBleManager extends BleManager {
private static final String TAG = "MyBleManager";

private BluetoothGattCharacteristic fluxCapacitorControlPoint;

public MyBleManager(@NonNull final Context context) {
super(context);
}

@Override
public int getMinLogPriority() {
// Use to return minimal desired logging priority.
Expand All @@ -176,7 +182,7 @@ class MyBleManager extends BleManager {
@Override
public void log(int priority, @NonNull String message) {
// Log from here.
Log.println(priority, message);
Log.println(priority, TAG, message);
}

@NonNull
Expand Down

0 comments on commit 60b8b90

Please sign in to comment.