Skip to content
Snippets Groups Projects
Commit 1b22ee9d authored by Michael Davis's avatar Michael Davis
Browse files

cta/CTA#172 Changes log level of getDesiredDriveState and reportDriveStatus from INFO to DEBUG

parent 7d7a82a7
No related branches found
No related tags found
No related merge requests found
......@@ -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.");
}
}
......
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