mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +00:00
[generator] Improve logging
- more logging for various stages start/finish - silenced some too repetitive and common warnings (changed to LDEBUG) Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -46,24 +46,30 @@ void CountryFinalProcessor::Process()
|
||||
/// @todo Make "straight-way" processing. There is no need to make many functions and
|
||||
/// many read-write FeatureBuilder ops here.
|
||||
|
||||
LOG(LINFO, ("Processing coastline..."));
|
||||
if (!m_coastlineGeomFilename.empty())
|
||||
ProcessCoastline();
|
||||
|
||||
// 1. Process roundabouts and addr:interpolation first.
|
||||
LOG(LINFO, ("Processing roundabouts..."));
|
||||
if (!m_miniRoundaboutsFilename.empty() || !m_addrInterpolFilename.empty())
|
||||
ProcessRoundabouts();
|
||||
|
||||
// 2. Process additional addresses then.
|
||||
LOG(LINFO, ("Adding addresses..."));
|
||||
if (!m_addressPath.empty())
|
||||
AddAddresses();
|
||||
|
||||
LOG(LINFO, ("Adding fake nodes..."));
|
||||
if (!m_fakeNodesFilename.empty())
|
||||
AddFakeNodes();
|
||||
|
||||
LOG(LINFO, ("Adding isolines..."));
|
||||
if (!m_isolinesPath.empty())
|
||||
AddIsolines();
|
||||
|
||||
// DropProhibitedSpeedCameras();
|
||||
LOG(LINFO, ("Processing building parts..."));
|
||||
ProcessBuildingParts();
|
||||
|
||||
// Finish();
|
||||
|
||||
Reference in New Issue
Block a user