Fix build error 46/300446/1
authorWoochan Lee <wc0917.lee@samsung.com>
Wed, 25 Oct 2023 06:37:39 +0000 (15:37 +0900)
committerWoochan Lee <wc0917.lee@samsung.com>
Wed, 25 Oct 2023 06:37:39 +0000 (15:37 +0900)
Change-Id: I17db0ab2e13d499065e74068fc48c0d3896c7062

org.tizen.aurum-bootstrap/src/Commands/ClickCommand.cc

index bb464d153c7c57f5fb10a5c3261ef3f2ca9d7f7e..511d6b2bfec759730738377547299c0e7a156f2d 100644 (file)
@@ -62,11 +62,11 @@ std::unique_ptr<ClickCommand> ClickCommand::createCommand(const ::aurum::ReqClic
 
 ::grpc::Status ClickCoordCommand::execute()
 {
-    LOGI("ClickCoord (%d, %d) --------------- ", point.x(), point.y());
-
     std::shared_ptr<UiDevice> obj = UiDevice::getInstance();
     const ::aurum::Point& point = mRequest->coordination();
 
+    LOGI("ClickCoord (%d, %d) --------------- ", point.x(), point.y());
+
     obj->click(point.x(), point.y());
     mResponse->set_status(::aurum::RspStatus::OK);