diff --git a/src/mclogs.ts b/src/mclogs.ts index d44a560..b9a0bec 100644 --- a/src/mclogs.ts +++ b/src/mclogs.ts @@ -48,6 +48,7 @@ export async function parseLog(s: string): Promise { const id = link.replace('https://mclo.gs/', ''); if (!id) return null; const apiUrl = 'https://api.mclo.gs/1/raw/' + id; + console.log(apiUrl); let log: string; try { const f = await fetch(apiUrl);