refactor(job): use Display to print Thread in job_perform()

This commit is contained in:
Alexander Krotov
2019-12-21 04:15:34 +03:00
parent 7fac71aa81
commit da174eae71

View File

@@ -736,11 +736,7 @@ fn job_perform(context: &Context, thread: Thread, probe_network: bool) {
info!( info!(
context, context,
"{}-job #{}, action {} started...", "{}-job #{}, action {} started...",
if thread == Thread::Imap { thread,
"INBOX"
} else {
"SMTP"
},
job.job_id, job.job_id,
job.action, job.action,
); );
@@ -825,11 +821,7 @@ fn job_perform(context: &Context, thread: Thread, probe_network: bool) {
info!( info!(
context, context,
"{}-job #{} not succeeded on try #{}, retry in {} seconds.", "{}-job #{} not succeeded on try #{}, retry in {} seconds.",
if thread == Thread::Imap { thread,
"INBOX"
} else {
"SMTP"
},
job.job_id as u32, job.job_id as u32,
tries, tries,
time_offset time_offset