Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Mar 14, 2024
1 parent bccec48 commit 6741db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/http-server/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ http.listen({
port: 8080,

fetch(req) {
console.log(`Got HTTP ${req.method} request for "${req.url}"`);
console.log(`Got HTTP "${req.method}" request: ${req.url}`);
return new Response('Hello World!');
},
});
Expand Down

0 comments on commit 6741db8

Please sign in to comment.