diff options
author | Joris | 2024-06-02 12:53:20 +0200 |
---|---|---|
committer | Joris | 2024-06-02 12:53:20 +0200 |
commit | 0d5ec3626773edb7d32884c594230c7cc03ae0e7 (patch) | |
tree | 768b6d6fee0b5409c7a12f5aa7b191a25ca5f2d7 /src/jobs/mod.rs | |
parent | 76a761630a8e6f5686d7e4384948ed949f702f3b (diff) |
Simplify logging initmain
Diffstat (limited to 'src/jobs/mod.rs')
-rw-r--r-- | src/jobs/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jobs/mod.rs b/src/jobs/mod.rs index 5f95597..17df58c 100644 --- a/src/jobs/mod.rs +++ b/src/jobs/mod.rs @@ -11,14 +11,14 @@ use crate::model::job::Job; pub async fn start(config: Config, pool: SqlitePool, templates: Tera) { loop { if db::jobs::should_run(&pool, Job::WeeklyReport).await { - info!("Starting weekly report job"); + log::info!("Starting weekly report job"); if weekly_report::send(&config, &pool, &templates).await { db::jobs::actualize_last_execution(&pool, Job::WeeklyReport) .await; } } if db::jobs::should_run(&pool, Job::MonthlyPayment).await { - info!("Starting monthly payment job"); + log::info!("Starting monthly payment job"); db::payments::create_monthly_payments(&pool).await; db::jobs::actualize_last_execution(&pool, Job::MonthlyPayment) .await; |