I’m making a panel for my application and I want to integrate the logs into a tab, but I can’t find the file and I don’t know if there’s any direct way to do it
Is there any way to get my application logs?
thanks
I’m making a panel for my application and I want to integrate the logs into a tab, but I can’t find the file and I don’t know if there’s any direct way to do it
Is there any way to get my application logs?
thanks
Hey @J-RAP,
You could use something like Winston to log into a file, but it logs only whatever you tell it to, similar to how console.log("SOME TEXT HERE")
logs only SOME TEXT HERE to the log. You can take a look at how it’s implemented here: https://glitch.com/edit/#!/starter-winston
This might not solve your problem, but I’m sure others might be able to help you!