Fix dlog format 15/194715/1
authorhyunho <hhstark.kang@samsung.com>
Fri, 7 Dec 2018 05:05:06 +0000 (14:05 +0900)
committerhyunho <hhstark.kang@samsung.com>
Fri, 7 Dec 2018 05:05:06 +0000 (14:05 +0900)
Change-Id: I5da8f36aac39adec9a88bb8bb1ab98a3e5c71138
Signed-off-by: hyunho <hhstark.kang@samsung.com>
watchface-complication-provider/watchface-complication-provider.cc
watchface-complication/complication.cc

index a6bea60..a3968f6 100644 (file)
@@ -81,8 +81,8 @@ class WatchComplicationProviderStub : public ComplicationProvider {
                            Bundle* shared_data) override {
     for (auto& i : cb_list_)
       i->Invoke(GetProviderId(), sender_appid, type, context, shared_data);
-    LOGI("update request call done %s", GetProviderId().c_str(),
-         sender_appid.c_str());
+    LOGI("update request call done provider(%s) sender(%s)",
+        GetProviderId().c_str(), sender_appid.c_str());
   }
 
   int AddCallbackInfo(CallbackInfo* ci) {
index 5adcb19..d657c65 100644 (file)
@@ -337,7 +337,7 @@ const Bundle* Complication::GetCurData() {
   std::list<std::unique_ptr<Bundle>>::iterator it
                                   = impl_->candidates_list_.begin();
 
-  LOGI("get cur data %d, %d", impl_->cur_data_idx_,
+  LOGI("get cur data idx(%d), list_size(%zu)", impl_->cur_data_idx_,
                     impl_->candidates_list_.size());
   auto nx = std::next(it, impl_->cur_data_idx_);
   return nx->get();