commit | a1e6c000edfec5a243f68caab8805ff4ca809868 | [log] [tgz] |
---|---|---|
author | Johan Euphrosine <proppy@google.com> | Fri Sep 18 23:55:10 2015 -0700 |
committer | Vitaly Buka <vitalybuka@google.com> | Mon Sep 21 20:23:02 2015 +0000 |
tree | 2593c88a7ce765d838249f374809641d161171d3 | |
parent | 4add9160845ea2754889069ddb6d931c5ac5cf3d [diff] |
examples/ubuntu/avahi_client: add daemon configuration hint in error message Bug: 24204144 Change-Id: I33668e885dd2344da429f204b5d09c722b2a2ff0 Reviewed-on: https://weave-review.googlesource.com/1094 Reviewed-by: Vitaly Buka <vitalybuka@google.com>
diff --git a/libweave/examples/ubuntu/avahi_client.cc b/libweave/examples/ubuntu/avahi_client.cc index a77e85f..31e5741 100644 --- a/libweave/examples/ubuntu/avahi_client.cc +++ b/libweave/examples/ubuntu/avahi_client.cc
@@ -37,7 +37,8 @@ avahi_threaded_poll_start(thread_pool_.get()); group_.reset(avahi_entry_group_new(client_.get(), GroupCallback, nullptr)); - CHECK(group_) << avahi_strerror(avahi_client_errno(client_.get())); + CHECK(group_) << avahi_strerror(avahi_client_errno(client_.get())) + << ". Check avahi-daemon configuration"; } MdnsImpl::~MdnsImpl() {