Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
ecde67e0
Commit
ecde67e0
authored
18 years ago
by
Christopher J. Morrone
Browse files
Options
Downloads
Patches
Plain Diff
Have the slurmd print its NodeName in log messages rather than NodeHostname.
parent
22582fa3
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/slurmd/slurmstepd/mgr.c
+1
-1
1 addition, 1 deletion
src/slurmd/slurmstepd/mgr.c
src/slurmd/slurmstepd/slurmstepd.c
+1
-2
1 addition, 2 deletions
src/slurmd/slurmstepd/slurmstepd.c
with
2 additions
and
3 deletions
src/slurmd/slurmstepd/mgr.c
+
1
−
1
View file @
ecde67e0
...
@@ -1467,7 +1467,7 @@ _slurmd_job_log_init(slurmd_job_t *job)
...
@@ -1467,7 +1467,7 @@ _slurmd_job_log_init(slurmd_job_t *job)
if
(
conf
->
log_opts
.
stderr_level
>
LOG_LEVEL_DEBUG3
)
if
(
conf
->
log_opts
.
stderr_level
>
LOG_LEVEL_DEBUG3
)
conf
->
log_opts
.
stderr_level
=
LOG_LEVEL_DEBUG3
;
conf
->
log_opts
.
stderr_level
=
LOG_LEVEL_DEBUG3
;
snprintf
(
argv0
,
sizeof
(
argv0
),
"slurmd[%s]"
,
conf
->
host
name
);
snprintf
(
argv0
,
sizeof
(
argv0
),
"slurmd[%s]"
,
conf
->
node_
name
);
/*
/*
* reinitialize log
* reinitialize log
*/
*/
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/slurmstepd/slurmstepd.c
+
1
−
2
View file @
ecde67e0
...
@@ -209,7 +209,6 @@ _init_from_slurmd(int sock, char **argv,
...
@@ -209,7 +209,6 @@ _init_from_slurmd(int sock, char **argv,
conf
->
log_opts
.
stderr_level
=
conf
->
debug_level
;
conf
->
log_opts
.
stderr_level
=
conf
->
debug_level
;
conf
->
log_opts
.
logfile_level
=
conf
->
debug_level
;
conf
->
log_opts
.
logfile_level
=
conf
->
debug_level
;
conf
->
log_opts
.
syslog_level
=
conf
->
debug_level
;
conf
->
log_opts
.
syslog_level
=
conf
->
debug_level
;
/* forward the log options to slurmstepd */
//log_alter(conf->log_opts, 0, NULL);
//log_alter(conf->log_opts, 0, NULL);
/*
/*
* If daemonizing, turn off stderr logging -- also, if
* If daemonizing, turn off stderr logging -- also, if
...
@@ -225,7 +224,7 @@ _init_from_slurmd(int sock, char **argv,
...
@@ -225,7 +224,7 @@ _init_from_slurmd(int sock, char **argv,
}
else
}
else
conf
->
log_opts
.
syslog_level
=
LOG_LEVEL_QUIET
;
conf
->
log_opts
.
syslog_level
=
LOG_LEVEL_QUIET
;
log_init
(
argv
[
0
],
conf
->
log_opts
,
LOG_DAEMON
,
conf
->
logfile
);
log_init
(
argv
[
0
],
conf
->
log_opts
,
LOG_DAEMON
,
conf
->
logfile
);
/* acct info */
/* acct info */
jobacct_g_startpoll
(
conf
->
job_acct_freq
);
jobacct_g_startpoll
(
conf
->
job_acct_freq
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment