From 0d5ec3626773edb7d32884c594230c7cc03ae0e7 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 2 Jun 2024 12:53:20 +0200 Subject: Simplify logging init --- src/jobs/mod.rs | 4 ++-- src/jobs/weekly_report.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/jobs') 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; diff --git a/src/jobs/weekly_report.rs b/src/jobs/weekly_report.rs index b482f0d..0c10143 100644 --- a/src/jobs/weekly_report.rs +++ b/src/jobs/weekly_report.rs @@ -30,7 +30,7 @@ pub async fn send( .await } Err(err) => { - error!("Error preparing weekly report from template: {:?}", err); + log::error!("Error preparing weekly report from template: {:?}", err); false } } -- cgit v1.2.3