- commit
- 6d6b1d5
- parent
- db4defd
- author
- Eric Bower
- date
- 2021-10-25 03:25:45 +0000 UTC
add extra debug statement when fetching data
1 files changed,
+3,
-0
+3,
-0
1@@ -179,6 +179,9 @@ async function fetchGithubData(props: Props): Promise<Resp<any>> {
2 async function processResources(resources: Resource[]) {
3 const plugins: { [key: string]: Plugin } = {};
4 const markdown: { [key: string]: string } = {};
5+
6+ console.log(`Fetching ${resources.length} resources`);
7+
8 for (let i = 0; i < resources.length; i += 1) {
9 const d = resources[i];
10