diff --git a/omnipod-dash/src/main/java/info/nightscout/androidaps/plugins/pump/omnipod/dash/OmnipodDashPumpPlugin.kt b/omnipod-dash/src/main/java/info/nightscout/androidaps/plugins/pump/omnipod/dash/OmnipodDashPumpPlugin.kt index db68af0a20..0050a23481 100644 --- a/omnipod-dash/src/main/java/info/nightscout/androidaps/plugins/pump/omnipod/dash/OmnipodDashPumpPlugin.kt +++ b/omnipod-dash/src/main/java/info/nightscout/androidaps/plugins/pump/omnipod/dash/OmnipodDashPumpPlugin.kt @@ -1364,16 +1364,17 @@ class OmnipodDashPumpPlugin @Inject constructor( private fun handleCommandConfirmation(confirmation: CommandConfirmed) { val command = confirmation.command val historyEntry = history.getById(command.historyId) - aapsLogger.debug(LTag.PUMPCOMM, "handling command confirmation: $confirmation") + aapsLogger.debug(LTag.PUMPCOMM, "handling command confirmation: $confirmation ${historyEntry.commandType}") when (historyEntry.commandType) { OmnipodCommandType.CANCEL_TEMPORARY_BASAL -> { if (confirmation.success) { - pumpSync.syncStopTemporaryBasalWithPumpId( + val ret = pumpSync.syncStopTemporaryBasalWithPumpId( historyEntry.createdAt, historyEntry.pumpId(), PumpType.OMNIPOD_DASH, serialNumber() ) + aapsLogger.info(LTag.PUMP, "syncStopTemporaryBasalWithPumpId ret=$ret") podStateManager.tempBasal = null } rxBus.send(EventDismissNotification(Notification.OMNIPOD_TBR_ALERTS))