Skip to content

Commit b0bfcf5

Browse files
committed
Fix log debug.
1 parent af9992b commit b0bfcf5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Image.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,14 +368,14 @@ class Image extends React.Component<ImageComponentProps, ImageComponentState> {
368368
};
369369

370370
private _gestureDoubleTap = () => Gesture.Tap().maxDuration(250).numberOfTaps(2).onStart((evt) => {
371-
console.log('_gestureDoubleTap', 'onStart');
371+
this._debug('_gestureDoubleTap', 'onStart', this);
372372
this._handleImageZoomInOut(evt);
373373
});
374374
private _gesturePinch = () => Gesture.Pinch().onEnd((evt) => {
375-
console.log('_gesturePinch', 'onEnd');
375+
this._debug('_gesturePinch', 'onEnd');
376376
this._onPinchEnd(evt);
377377
}).onUpdate((evt) => {
378-
console.log('_gesturePinch', 'onUpdate', evt);
378+
this._debug('_gesturePinch', 'onUpdate', evt);
379379
this._onPinchUpdate(evt);
380380
});
381381

0 commit comments

Comments
 (0)