Log at debug level #300
Labels
documentation
Improvements or additions to documentation
enhancement
New feature or request
help wanted
Extra attention is needed
Issue Summary
It is somewhat challenging to configure logging at the debug level. Additionally, there seems to be a mismatch between the intended and actual use of the
Logger
class.Example Scenario
I am working with the DP_VS_RL1 example and I want to see the
SPDLOG_LOGGER_DEBUG
messages in the log files of components and the solver. I have implemented this in the log-at-debug-level branch in my fork.Steps Taken:
SPDLOG_ACTIVE_LEVEL
toDEBUG
inLogger.h
.mSLog
inTopologicalPowerComp
andSolver
.Logger
class byTopologicalPowerComp
,Solver
, and other classes.Identified Mismatch
Logger
class has a staticLogger::setLogLevel
function to set the log level for aspdlog::logger
object, but this function is never used (at least, I couldn't find any references).TopologicalPowerComp
andSolver
call the staticLogger::get
function to create/get thespdlog::logger
object. However, the log level of thespdlog::logger
object is not set within the scope of theLogger::get
function, resulting in a default log level ofinfo
.Suggestions for Improvement
Eliminate the need for Step 3.
Logger
class or it's usage, so that the log level is set appropriately when creating or retrieving aspdlog::logger
object.Address the less intuitive aspects of Step 2:
SPDLOG_ACTIVE_LEVEL
toDEBUG
.SPDLOG_ACTIVE_LEVEL
toDEBUG
for Debug builds.Discussion
What do you think? I look forward to your feedback and discussion on these points.
The text was updated successfully, but these errors were encountered: