Skip to content

Commit

Permalink
Attempt fixing windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Werni2A committed Jun 30, 2024
1 parent 9bbbce6 commit 66fb215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ContainerContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void ContainerContext::configureLogger(const fs::path& aLogPath)
fs::create_directories(aLogPath.parent_path());
}

auto file_sink = std::make_shared<spdlog::sinks::basic_file_sink_mt>(aLogPath);
auto file_sink = std::make_shared<spdlog::sinks::basic_file_sink_mt>(aLogPath.string());
mLogger = spdlog::logger{"file logger", {file_sink}};
mLogger.set_pattern("[%^%l%$] %v");
mLogger.set_level(mLogLevel);
Expand Down

0 comments on commit 66fb215

Please sign in to comment.