Parcourir la source

chore: logging errors

Adam il y a 6 mois
Parent
commit
8e80b8f2fa
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      packages/console/app/src/lib/github.ts

+ 3 - 1
packages/console/app/src/lib/github.ts

@@ -23,6 +23,8 @@ export const github = query(async () => {
       },
       },
       contributors: contributorCount,
       contributors: contributorCount,
     }
     }
-  } catch {}
+  } catch (e) {
+    console.error(e)
+  }
   return undefined
   return undefined
 }, "github")
 }, "github")