How to log Django CronJob function errors to the console?

1.4k Views Asked by At

I have a CronJob function in Django, parsing and saving data. The huge problem is that if something is wrong, no logs appear in console in terminal, which makes life and debugging very difficult. How to log to console in development mode on localhost?

class ParseFromKarabasCron(CronJobBase):
     RUN_EVERY_MINS = 1 # every 2 hours

     schedule = Schedule(run_every_mins=RUN_EVERY_MINS)
     code = 'app.my_cron_job'    # a unique code

     def do(self):
         pass

http://django-cron.readthedocs.io/en/latest/installation.html

1

There are 1 best solutions below

4
On

From this comment: https://apple.stackexchange.com/questions/38861/where-is-the-cron-log-file-in-macosx-lion#comment44006_38865

"According to , you could modify the cron plist (/System/Library/LaunchDaemons/com.vix.cron.plist) with a Stdout/Stderr path to debug cron itself. I don't recall if launchctl unloading and launchctl loading the plist is sufficient, or since it's a system daemon if you'd have to restart entirely. I'd suggest the latter just to be sure."

The erikslab.com link shows how to add these to the .plist

<key>StandardOutPath</key>
<string>/var/log/progname.log</string>
<key>StandardErrorPath</key>
<string>/var/log/progname_err.log</string>