remove logging
This commit is contained in:
parent
d51a7c9461
commit
80f2467694
1 changed files with 1 additions and 4 deletions
|
@ -210,10 +210,7 @@ public class IobCobCalculatorPlugin extends PluginBase implements IobCobCalculat
|
||||||
disposable.add(rxBus
|
disposable.add(rxBus
|
||||||
.toObservable(EventNewHistoryBgData.class)
|
.toObservable(EventNewHistoryBgData.class)
|
||||||
.observeOn(Schedulers.io())
|
.observeOn(Schedulers.io())
|
||||||
.subscribe(event -> {
|
.subscribe(event -> newHistoryData(new EventNewHistoryData(event.getTimestamp()), true), fabricPrivacy::logException)
|
||||||
getAapsLogger().debug("XXXXXX " + event.toString());
|
|
||||||
newHistoryData(new EventNewHistoryData(event.getTimestamp()), true);
|
|
||||||
}, fabricPrivacy::logException)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue