about summary refs log tree commit diff
path: root/src/view/screens/PostThread.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2023-11-04 13:42:36 -0500
committerEric Bailey <git@esb.lol>2023-11-04 13:42:36 -0500
commitf51351e80d446fc058faf0ab91757ca4bdead0a5 (patch)
tree0c2372a71e605bfbb99b38113305b800ddd04064 /src/view/screens/PostThread.tsx
parente49a3d8a564b2aa42a8c0e66dfcbae27d096dc26 (diff)
downloadvoidsky-f51351e80d446fc058faf0ab91757ca4bdead0a5.tar.zst
Replace all logs with new logger
Diffstat (limited to 'src/view/screens/PostThread.tsx')
-rw-r--r--src/view/screens/PostThread.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/screens/PostThread.tsx b/src/view/screens/PostThread.tsx
index 5f15adcc5..8bb279be8 100644
--- a/src/view/screens/PostThread.tsx
+++ b/src/view/screens/PostThread.tsx
@@ -14,6 +14,7 @@ import {s} from 'lib/styles'
 import {useSafeAreaInsets} from 'react-native-safe-area-context'
 import {clamp} from 'lodash'
 import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries'
+import {logger} from '#/logger'
 
 const SHELL_FOOTER_HEIGHT = 44
 
@@ -38,7 +39,7 @@ export const PostThreadScreen = withAuthRequired(
         InteractionManager.runAfterInteractions(() => {
           if (!view.hasLoaded && !view.isLoading) {
             view.setup().catch(err => {
-              store.log.error('Failed to fetch thread', {error: err})
+              logger.error('Failed to fetch thread', {error: err})
             })
           }
         })