
How I can use the Logs management for each function execution to put there custom logs like console.log/warn/error.
in front and there is a window for that. How I can use it in my code?

Logs should work with your normal console.log()
For response you should follow the basic example, and use res.json
module.exports = async (req, res) => {
console.log("Hello logs");
res.json({
message: 'Hello from Appwrite!',
});
};
Recommended threads
- Unable to migrate the project to self ho...
The Continue button is disabled in the migration modal. Unable to migrate the project. In both local and cloud appwrite 1.7.4
- Why a REST client keeps getting "The cur...
Why a REST client or API call keeps getting "The current user is not authorized to perform the requested action" even if the roles are configured correctly? Wha...
- Error Migration Cloud to Self Hosted
Hello ! When doin migration, here is the message i've got : "Error occurred while pushing 'document:67efa41b00259efefe84' to destination with message: 'I...
