about summary refs log tree commit diff
path: root/src/state/geolocation.tsx
diff options
context:
space:
mode:
authorhailey <me@haileyok.com>2025-05-21 15:35:28 -0700
committerGitHub <noreply@github.com>2025-05-21 15:35:28 -0700
commit7ed2a4f388983e636299af7700fc604824caf001 (patch)
tree874fcea8747bc57fd1a035c007aa71d106cc0348 /src/state/geolocation.tsx
parent5253e688a098662aeacae08f16dc281cc1066899 (diff)
downloadvoidsky-7ed2a4f388983e636299af7700fc604824caf001.tar.zst
silence geo log (#8400)
Diffstat (limited to 'src/state/geolocation.tsx')
-rw-r--r--src/state/geolocation.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/geolocation.tsx b/src/state/geolocation.tsx
index 0024cd41d..09b1b9471 100644
--- a/src/state/geolocation.tsx
+++ b/src/state/geolocation.tsx
@@ -3,7 +3,7 @@ import EventEmitter from 'eventemitter3'
 
 import {networkRetry} from '#/lib/async/retry'
 import {logger} from '#/logger'
-import {Device, device} from '#/storage'
+import {type Device, device} from '#/storage'
 
 const events = new EventEmitter()
 const EVENT = 'geolocation-updated'
@@ -104,7 +104,7 @@ export function beginResolveGeolocation() {
         })
         .catch((e: any) => {
           // complete fail closed
-          logger.error(`geolocation: failed retries`, {safeMessage: e.message})
+          logger.debug(`geolocation: failed retries`, {safeMessage: e.message})
         })
     } finally {
       resolve(undefined)