Skip to content
Snippets Groups Projects
Commit ab679155 authored by Moe Jette's avatar Moe Jette
Browse files

improve information logged with respect to event triggers

parent 5bb05e25
No related branches found
No related tags found
No related merge requests found
...@@ -533,9 +533,10 @@ static void _trigger_slurmctld_event(uint32_t trig_type) ...@@ -533,9 +533,10 @@ static void _trigger_slurmctld_event(uint32_t trig_type)
ti.res_type = TRIGGER_RES_TYPE_SLURMCTLD; ti.res_type = TRIGGER_RES_TYPE_SLURMCTLD;
ti.trig_type = trig_type; ti.trig_type = trig_type;
if (slurm_pull_trigger(&ti)) { if (slurm_pull_trigger(&ti)) {
error("error from _trigger_slurmctld_event in backup.c"); error("error from _trigger_slurmctld_event %u in backup.c: %m",
trig_type);
return; return;
} }
verbose("trigger pulled for SLURMCTLD event successful"); verbose("trigger pulled for SLURMCTLD event %u successful", trig_type);
return; return;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment