The current implementation for jobs to be recorded in DB is done through a custom logging Handler in worker.py, meaning that if the global logging level is set by a system admin to something higher than INFO, the user will not get the logs in DB that we expect from the tests.
That means that this job logging handler should write logs to db regardless of the level the warden.scheduler.worker logger is set at.
The current implementation for jobs to be recorded in DB is done through a custom logging Handler in
worker.py, meaning that if the global logging level is set by a system admin to something higher thanINFO, the user will not get the logs in DB that we expect from the tests.That means that this job logging handler should write logs to db regardless of the level the
warden.scheduler.workerlogger is set at.