Skip to content

Commit 77f9d33

Browse files
committed
Remove logs from sample app
1 parent 35540fa commit 77f9d33

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

example/App.tsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
import { StyleSheet, View, Text, TouchableOpacity, Alert, Platform, Dimensions } from 'react-native';
22
import { StatusBar } from 'expo-status-bar';
33

4-
// TEST: This log should show up immediately when the app starts
5-
console.log('🧪 [TEST] App.tsx loaded - Console.log is working!');
6-
7-
console.log('🧪 [TEST] About to import cloudinary-react-native...');
84
import {AdvancedImage, AdvancedVideo} from 'cloudinary-react-native';
9-
console.log('🧪 [TEST] Successfully imported cloudinary-react-native!', {AdvancedVideo: typeof AdvancedVideo});
105
import {Cloudinary} from '@cloudinary/url-gen';
116
import {scale} from "@cloudinary/url-gen/actions/resize";
127
import {cartoonify} from "@cloudinary/url-gen/actions/effect";
@@ -35,9 +30,6 @@ const cld = new Cloudinary({
3530
});
3631

3732
export default function App() {
38-
// TEST: This should show when the App component is created
39-
console.log('🧪 [TEST] App component function called!');
40-
4133
const videoPlayer = useRef<any>(null);
4234
const [analyticsEnabled, setAnalyticsEnabled] = useState(false);
4335
const [autoTracking, setAutoTracking] = useState(false);
@@ -168,7 +160,6 @@ export default function App() {
168160

169161
<View style={styles.videoContainer}>
170162
{(() => {
171-
console.log('🧪 [TEST] About to render AdvancedVideo component...');
172163
return (
173164
<AdvancedVideo
174165
ref={videoPlayer}

0 commit comments

Comments
 (0)