print info on shared data only on reload

This commit is contained in:
Dennis Luxen 2013-10-28 15:11:53 +01:00
parent 4144698540
commit 571d9bd610

View File

@ -227,17 +227,19 @@ public:
SharedMemoryFactory::Get(CURRENT_DATA)->Ptr() SharedMemoryFactory::Get(CURRENT_DATA)->Ptr()
); );
SimpleLogger().Write(logDEBUG) << "(re-)loading data from shared memory"; SimpleLogger().Write(logDEBUG) << "(re-)getting data from shared memory";
LoadGraph(); LoadGraph();
LoadNodeAndEdgeInformation(); LoadNodeAndEdgeInformation();
LoadRTree(ram_index_path); LoadRTree(ram_index_path);
LoadTimestamp(); LoadTimestamp();
LoadViaNodeList(); LoadViaNodeList();
LoadNames(); LoadNames();
data_layout->PrintInformation();
} else { } else {
SimpleLogger().Write(logDEBUG) << "using previously loaded data"; SimpleLogger().Write(logDEBUG) << "using previously loaded data";
} }
data_layout->PrintInformation();
} }