We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3578db7 commit 76ecc2bCopy full SHA for 76ecc2b
src/dsm/headers/Dynamics.hpp
@@ -93,6 +93,8 @@ namespace dsm {
93
auto path = SparseMatrix<bool>{};
94
path.load(file);
95
pItinerary->setPath(std::move(path));
96
+ Logger::info(
97
+ std::format("Loaded cached path for itinerary {}", pItinerary->id()));
98
return;
99
}
100
@@ -143,6 +145,8 @@ namespace dsm {
143
145
if (m_bCacheEnabled) {
144
146
pItinerary->path().cache(
147
std::format("{}it{}.dsmcache", g_cacheFolder, pItinerary->id()));
148
149
+ std::format("Saved path in cache for itinerary {}", pItinerary->id()));
150
151
152
0 commit comments