remove logging

This commit is contained in:
Milos Kozak 2020-07-24 12:42:28 +02:00
parent d51a7c9461
commit 80f2467694

View file

@ -210,10 +210,7 @@ public class IobCobCalculatorPlugin extends PluginBase implements IobCobCalculat
disposable.add(rxBus
.toObservable(EventNewHistoryBgData.class)
.observeOn(Schedulers.io())
.subscribe(event -> {
getAapsLogger().debug("XXXXXX " + event.toString());
newHistoryData(new EventNewHistoryData(event.getTimestamp()), true);
}, fabricPrivacy::logException)
.subscribe(event -> newHistoryData(new EventNewHistoryData(event.getTimestamp()), true), fabricPrivacy::logException)
);
}