Fix wrong log messages 43/236843/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 22 Jun 2020 22:31:11 +0000 (07:31 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 22 Jun 2020 22:31:11 +0000 (07:31 +0900)
Change-Id: I56aacaaf7f96cc6a370bfae7595d4c54c7a918a2
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/rpc-port.cc

index 257123e..efae3d6 100644 (file)
@@ -220,9 +220,9 @@ RPC_API int rpc_port_proxy_create(rpc_port_proxy_h* h) {
   if (h == nullptr)
     return RPC_PORT_ERROR_INVALID_PARAMETER;
 
-  _W("rpc_port_proxy_create(%p)", h);
   auto p = new ::ProxyExt();
   *h = p;
+  _W("rpc_port_proxy_create(%p)", p);
   return RPC_PORT_ERROR_NONE;
 }
 
@@ -350,9 +350,9 @@ RPC_API int rpc_port_stub_create(rpc_port_stub_h* h, const char* port_name) {
   if (h == nullptr || port_name == nullptr)
     return RPC_PORT_ERROR_INVALID_PARAMETER;
 
-  _W("rpc_port_stub_create(%p, %s)", h, port_name);
   auto p = new ::StubExt(port_name);
   *h = p;
+  _W("rpc_port_stub_create(%p, %s)", p, port_name);
   return RPC_PORT_ERROR_NONE;
 }