ソースを参照

chore: logging errors

Adam 6 ヶ月 前
コミット
8e80b8f2fa
1 ファイル変更3 行追加1 行削除
  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")