about summary refs log tree commit diff
path: root/src/state/geolocation.tsx
diff options
context:
space:
mode:
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)