Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(804)

Unified Diff: update_engine_client.cc

Issue 3336016: update_engine_client: Clarify error message. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: update_engine_client.cc
diff --git a/update_engine_client.cc b/update_engine_client.cc
index a55820ae94f28eb781f198c215dcf92f8031e697..7bbc62f6de5edfc38764409adabe60903260df85 100644
--- a/update_engine_client.cc
+++ b/update_engine_client.cc
@@ -49,7 +49,8 @@ bool GetProxy(DBusGProxy** out_proxy) {
kUpdateEngineServiceInterface,
&error);
if (!proxy) {
- LOG(FATAL) << "Error getting proxy: " << GetGErrorMessage(error);
+ LOG(FATAL) << "Error getting dbus proxy for "
+ << kUpdateEngineServiceName << ": " << GetGErrorMessage(error);
}
*out_proxy = proxy;
return true;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698