Skip to content

Commit

Permalink
Adding log file start message
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Feb 18, 2024
1 parent 68fd374 commit b025ffd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/common/chowdsp_logging/Loggers/chowdsp_Logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Logger::Logger (LogFileParams loggerParams) : params (loggerParams)
file_sink = std::make_shared<spdlog::sinks::basic_file_sink_mt> (log_file.getFullPathName().toStdString(),
false);
logger.internal_logger.sinks().push_back (file_sink);
logger.internal_logger.info ("Starting log file: " + log_file.getFullPathName().toStdString());

juce::Logger::setCurrentLogger (&logger);

Expand Down

0 comments on commit b025ffd

Please sign in to comment.