Skip to content

Commit 1abeb8e

Browse files
committed
log stargazer error
1 parent e4352c1 commit 1abeb8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/GitHub/GetStargazersCount.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ public function __invoke(): ?string
2727
return $stargazers > 999
2828
? (round($stargazers / 1000, 1) . 'K')
2929
: $stargazers;
30-
} catch (Throwable) {
30+
} catch (Throwable $e) {
31+
ll($e);
3132
return null;
3233
}
3334
},

0 commit comments

Comments
 (0)