Print logs
How logs help us?
When we working with complex logic and something not going as we expected, printing some data out at a point help us to see what went wrong.
How to use log?
-
Create new endpoint or using the existing one then update the code to
import { Request, Response } from "gamedrive";
export default async function (request: Request, response: Response) {
try {
const playerId = request.playerId;
console.log("playerId is: " + playerId);
console.log("message1", "message2");
response.send("hello from an endpoint");
} catch (error) {
response.sendError(error);
}
} -
Press Request button to send test request. Then go to logs page and you will see the log messages show up.
