Fix job run flog

The arguments didn't match the format string.
This commit is contained in:
Fabian Homborg 2022-03-21 16:25:31 +01:00
parent d0d5c62ec7
commit 1f997de8bf

View File

@ -946,7 +946,8 @@ bool job_t::resume() {
}
void job_t::continue_job(parser_t &parser) {
FLOGF(proc_job_run, L"Run job %d, gid %d (%ls), %ls, %ls",
FLOGF(proc_job_run, L"Run job %d (%ls), %ls, %ls",
job_id(), command_wcstr(),
is_completed() ? L"COMPLETED" : L"UNCOMPLETED",
parser.libdata().is_interactive ? L"INTERACTIVE" : L"NON-INTERACTIVE");