aboutsummaryrefslogtreecommitdiff
path: root/payload_consumer/delta_performer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'payload_consumer/delta_performer.cc')
-rw-r--r--payload_consumer/delta_performer.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/payload_consumer/delta_performer.cc b/payload_consumer/delta_performer.cc
index fe581b6a..519ec716 100644
--- a/payload_consumer/delta_performer.cc
+++ b/payload_consumer/delta_performer.cc
@@ -503,7 +503,9 @@ bool DeltaPerformer::Write(const void* bytes, size_t count, ErrorCode* error) {
if (!CanPerformInstallOperation(op))
return true;
if (!ProcessOperation(&op, error)) {
- LOG(ERROR) << "unable to process operation: " << *error;
+ LOG(ERROR) << "unable to process operation: "
+ << InstallOperationTypeName(op.type())
+ << " Error: " << utils::ErrorCodeToString(*error);
return false;
}