@@ -322,7 +322,7 @@ void GLView::handleTouchesBegin(int num, intptr_t ids[], float xs[], float ys[])
322
322
touch->setTouchInfo (unusedIndex, (x - _viewPortRect.origin .x ) / _scaleX,
323
323
(y - _viewPortRect.origin .y ) / _scaleY);
324
324
325
- AXLOGI (" x = {} y = {}" , touch->getLocationInView ().x , touch->getLocationInView ().y );
325
+ AXLOGV (" x = {} y = {}" , touch->getLocationInView ().x , touch->getLocationInView ().y );
326
326
327
327
g_touchIdReorderMap.emplace (id, unusedIndex);
328
328
touchEvent._touches .emplace_back (touch);
@@ -369,7 +369,7 @@ void GLView::handleTouchesMove(int num, intptr_t ids[], float xs[], float ys[],
369
369
continue ;
370
370
}
371
371
372
- AXLOGI (" Moving touches with id: {}, x={}, y={}, force={}, maxFource={}" , (int )id, x, y, force, maxForce);
372
+ AXLOGV (" Moving touches with id: {}, x={}, y={}, force={}, maxFource={}" , (int )id, x, y, force, maxForce);
373
373
Touch* touch = g_touches[iter->second ];
374
374
if (touch)
375
375
{
@@ -425,7 +425,7 @@ void GLView::handleTouchesOfEndOrCancel(EventTouch::EventCode eventCode,
425
425
Touch* touch = g_touches[iter->second ];
426
426
if (touch)
427
427
{
428
- AXLOGI (" Ending touches with id: {}, x={}, y={}" , (int )id, x, y);
428
+ AXLOGV (" Ending touches with id: {}, x={}, y={}" , (int )id, x, y);
429
429
touch->setTouchInfo (iter->second , (x - _viewPortRect.origin .x ) / _scaleX,
430
430
(y - _viewPortRect.origin .y ) / _scaleY);
431
431
0 commit comments