Skip to content

Commit 251f16a

Browse files
committed
Log in tile function
1 parent acf1dc2 commit 251f16a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/functions/tiles.mts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ export default async (req: Request, context: Context) => {
1414
}
1515

1616
const { z, x, y } = context.params;
17+
console.log("before getTile", { z, x, y });
1718
const tile = await getTile(Number(z), Number(x), Number(y));
19+
console.log({ tile });
1820
if (!tile) {
1921
return new Response("Tile not found", { status: 404 });
2022
}

0 commit comments

Comments
 (0)