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

Minor change in time-stamp reporting message

parent e5ac88da
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ void slurm_print_ctl_conf ( FILE* out,
return ;
make_time_str ((time_t *)&slurm_ctl_conf_ptr->last_update, time_str);
fprintf(out, "Configuration updated at %s\n", time_str);
fprintf(out, "Configuration data as of %s\n", time_str);
fprintf(out, "BackupAddr = %s\n",
slurm_ctl_conf_ptr->backup_addr);
fprintf(out, "BackupController = %s\n",
......
......@@ -50,7 +50,7 @@ slurm_print_job_info_msg ( FILE* out, job_info_msg_t * job_info_msg_ptr )
char time_str[16];
make_time_str ((time_t *)&job_info_msg_ptr->last_update, time_str);
fprintf( out, "Jobs updated at %s, record count %d\n",
fprintf( out, "Job data as of %s, record count %d\n",
time_str, job_info_msg_ptr->record_count);
for (i = 0; i < job_info_msg_ptr-> record_count; i++)
......
......@@ -52,7 +52,7 @@ slurm_print_job_step_info_msg ( FILE* out,
make_time_str ((time_t *)&job_step_info_msg_ptr->last_update,
time_str);
fprintf( out, "Job steps updated at %s, record count %d\n",
fprintf( out, "Job step data as of %s, record count %d\n",
time_str, job_step_info_msg_ptr->job_step_count);
for (i = 0; i < job_step_info_msg_ptr-> job_step_count; i++)
......
......@@ -54,7 +54,7 @@ slurm_print_node_info_msg ( FILE * out, node_info_msg_t * node_info_msg_ptr )
char time_str[16];
make_time_str ((time_t *)&node_info_msg_ptr->last_update, time_str);
fprintf( out, "Nodes updated at %s, record count %d\n",
fprintf( out, "Node data as of %s, record count %d\n",
time_str, node_info_msg_ptr->record_count);
for (i = 0; i < node_info_msg_ptr-> record_count; i++)
......
......@@ -50,7 +50,7 @@ void slurm_print_partition_info_msg ( FILE* out,
char time_str[16];
make_time_str ((time_t *)&part_info_ptr->last_update, time_str);
fprintf( out, "Partitions updated at %s, record count %d\n",
fprintf( out, "Partition data as of %s, record count %d\n",
time_str, part_info_ptr->record_count);
for (i = 0; i < part_info_ptr->record_count; i++) {
......
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