Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
6ab791f5
Commit
6ab791f5
authored
May 11, 2021
by
Michael Davis
Browse files
cta/CTA#172 Changes log level of getDesiredDriveState and reportDriveStatus from INFO to DEBUG
parent
b8f01bea
Changes
1
Hide whitespace changes
Inline
Side-by-side
scheduler/Scheduler.cpp
View file @
6ab791f5
...
...
@@ -763,7 +763,7 @@ common::dataStructures::DesiredDriveState Scheduler::getDesiredDriveState(const
log
::
ScopedParamContainer
spc
(
lc
);
spc
.
add
(
"drive"
,
driveName
)
.
add
(
"schedulerDbTime"
,
schedulerDbTime
);
lc
.
log
(
log
::
INFO
,
"In Scheduler::getDesiredDriveState(): success."
);
lc
.
log
(
log
::
DEBUG
,
"In Scheduler::getDesiredDriveState(): success."
);
}
return
d
.
desiredDriveState
;
}
...
...
@@ -827,7 +827,7 @@ void Scheduler::reportDriveStatus(const common::dataStructures::DriveInfo& drive
log
::
ScopedParamContainer
spc
(
lc
);
spc
.
add
(
"drive"
,
driveInfo
.
driveName
)
.
add
(
"schedulerDbTime"
,
schedulerDbTime
);
lc
.
log
(
log
::
INFO
,
"In Scheduler::reportDriveStatus(): success."
);
lc
.
log
(
log
::
DEBUG
,
"In Scheduler::reportDriveStatus(): success."
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment