stipple log file? #139
-
Hi all One question. I am running my stipple script in cron and it worked well yesterday BUT something happened this morning. I can't find anything about a stipple log file to see what happened. I am using linux mint. There's nothing in the /var/log/syslog except the successful cron jobs. but when I try 127.0.0.1:8000 there's nothing there and I can't see where it failed. Is there a log or should I add logging to my code. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Thanks for the feedback :) You can control many aspects of the logging with
and Depending on how your app is set up, most likely logging to file is disabled. So you'll need to enable it. After you apply the changes restart the app. |
Beta Was this translation helpful? Give feedback.
-
Yes - set them early, for example as the first thing in the |
Beta Was this translation helpful? Give feedback.
Yes - set them early, for example as the first thing in the
routes.jl
file or in your script, depending on how your app is structured.