|
19 | 19 | #include "src/common/libutil/errprintf.h" |
20 | 20 | #include "src/common/libjob/job.h" |
21 | 21 | #include "src/common/libjob/jj.h" |
| 22 | +#include "src/common/libjob/idf58.h" |
22 | 23 | #include "src/common/librlist/rlist.h" |
23 | 24 | #include "ccan/str/str.h" |
24 | 25 |
|
@@ -272,7 +273,7 @@ static int try_alloc (flux_t *h, struct simple_sched *ss) |
272 | 273 | "jobs_ahead") < 0) |
273 | 274 | flux_log_error (h, "schedutil_alloc_respond_success_pack"); |
274 | 275 |
|
275 | | - flux_log (h, LOG_DEBUG, "alloc: %ju: %s", (uintmax_t) job->id, s); |
| 276 | + flux_log (h, LOG_DEBUG, "alloc: %s: %s", idf58 (job->id), s); |
276 | 277 | rc = 0; |
277 | 278 |
|
278 | 279 | out: |
@@ -402,8 +403,8 @@ static void alloc_cb (flux_t *h, const flux_msg_t *msg, void *arg) |
402 | 403 | jobreq_destroy (job); |
403 | 404 | return; |
404 | 405 | } |
405 | | - flux_log (h, LOG_DEBUG, "req: %ju: spec={%d,%d,%d} duration=%.1f", |
406 | | - (uintmax_t) job->id, job->jj.nnodes, |
| 406 | + flux_log (h, LOG_DEBUG, "req: %s: spec={%d,%d,%d} duration=%.1f", |
| 407 | + idf58 (job->id), job->jj.nnodes, |
407 | 408 | job->jj.nslots, job->jj.slot_size, |
408 | 409 | job->jj.duration); |
409 | 410 | search_dir = job->priority > FLUX_JOB_URGENCY_DEFAULT; |
@@ -521,8 +522,8 @@ static int hello_cb (flux_t *h, |
521 | 522 | } |
522 | 523 |
|
523 | 524 | flux_log (h, LOG_DEBUG, |
524 | | - "hello: id=%ju priority=%u userid=%u t_submit=%0.1f", |
525 | | - (uintmax_t)id, |
| 525 | + "hello: id=%s priority=%u userid=%u t_submit=%0.1f", |
| 526 | + idf58 (id), |
526 | 527 | priority, |
527 | 528 | (unsigned int)userid, |
528 | 529 | t_submit); |
|
0 commit comments