From: Kern Sibbald Date: Tue, 19 Jan 2010 12:25:22 +0000 (+0100) Subject: Enhance FD status to have level X-Git-Tag: Release-5.0.0~64 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=89c1b9a1407a5204f0098c0dfab1034533249fa0;p=bacula%2Fbacula Enhance FD status to have level --- diff --git a/bacula/src/filed/status.c b/bacula/src/filed/status.c index 6d7c935046..ce570b93d1 100644 --- a/bacula/src/filed/status.c +++ b/bacula/src/filed/status.c @@ -191,8 +191,9 @@ static void list_running_jobs(STATUS_PKT *sp) len = Mmsg(msg, _("JobId %d Job %s is running.\n"), njcr->JobId, njcr->Job); sendit(msg.c_str(), len, sp); - len = Mmsg(msg, _(" %s%s Job started: %s\n"), - vss, job_type_to_str(njcr->getJobType()), dt); + len = Mmsg(msg, _(" %s%s %s Job started: %s\n"), + vss, level_to_str(njcr->getJobLevel()), + job_type_to_str(njcr->getJobType()), dt); } sendit(msg.c_str(), len, sp); if (njcr->JobId == 0) {