Update log message 56/265256/2
authorjusung <jusung07.son@samsung.com>
Wed, 13 Oct 2021 08:19:20 +0000 (17:19 +0900)
committerjusung <jusung07.son@samsung.com>
Wed, 13 Oct 2021 08:21:26 +0000 (17:21 +0900)
Change-Id: I1d8375bec8ab62fbf416dda1dcd4e515c8829cec
Signed-off-by: jusung <jusung07.son@samsung.com>
cion/vine/vine_discoverer.cc
cion/vine/vine_dp.cc

index 89c611495601cb637a8384e857f9fa95d9d910f4..0436020b9afd7a9bfc7ced843f153a2398fb4cec 100644 (file)
@@ -61,7 +61,7 @@ VineDiscoverer::VineDiscoverer(std::shared_ptr<VineSession> session)
           return;
         }
 
-        LOG(INFO) << "Available Service discovered";
+        LOG(INFO) << "Available Service discovered " << self->service_name_;
         if (!self->StartResolving(*svc)) {
           LOG(ERROR) << "Failed to start resolving";
           return;
index affdcdc414d3918591370c6ad824163a1899f494..31df5c2274892a7556a3ec602ecf7a87a7b0922d 100644 (file)
@@ -75,7 +75,8 @@ bool VineDp::SendDataAsync(const std::vector<unsigned char>& data) {
       data.size());
   if (ret != VINE_ERROR_NONE) {
     LOG(ERROR) << "Failed to send data to dp("
-               << static_cast<void*>(dp_) << ")";
+               << static_cast<void*>(dp_) << ", "
+               <<  VineErrorToString(ret) <<")";
     return false;
   }
   return true;