diff options
Diffstat (limited to 'fastboot/fastboot_driver.cpp')
-rw-r--r-- | fastboot/fastboot_driver.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fastboot/fastboot_driver.cpp b/fastboot/fastboot_driver.cpp index 6a5ad206a..8d534ea32 100644 --- a/fastboot/fastboot_driver.cpp +++ b/fastboot/fastboot_driver.cpp @@ -124,8 +124,11 @@ RetCode FastBootDriver::SetActive(const std::string& slot, std::string* response RetCode FastBootDriver::SnapshotUpdateCommand(const std::string& command, std::string* response, std::vector<std::string>* info) { + prolog_(StringPrintf("Snapshot %s", command.c_str())); std::string raw = FB_CMD_SNAPSHOT_UPDATE ":" + command; - return RawCommand(raw, response, info); + auto result = RawCommand(raw, response, info); + epilog_(result); + return result; } RetCode FastBootDriver::FlashPartition(const std::string& partition, |