From 0cd9cca6deacb6186acfecf833dcb16f923139f5 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Sat, 16 Apr 2011 19:10:37 +0200 Subject: [PATCH] Add logging of different loading stages. --- indexer/classificator_loader.cpp | 5 +++++ iphone/Maps/Classes/MapsAppDelegate.mm | 3 +++ map/framework.hpp | 2 ++ 3 files changed, 10 insertions(+) diff --git a/indexer/classificator_loader.cpp b/indexer/classificator_loader.cpp index 09bad4ad78..3dbbbe9c53 100644 --- a/indexer/classificator_loader.cpp +++ b/indexer/classificator_loader.cpp @@ -3,15 +3,20 @@ #include "drawing_rules.hpp" #include "../coding/reader.hpp" +#include "../base/logging.hpp" namespace classificator { void Read(string const & rules, string const & classificator, string const & visibility) { + LOG(LINFO, ("Reading drawing rules")); drule::ReadRules(rules.c_str()); + LOG(LINFO, ("Reading classificator")); if (!classif().ReadClassificator(classificator.c_str())) MYTHROW(Reader::OpenException, ("drawing rules or classificator file")); + LOG(LINFO, ("Reading visibility")); (void)classif().ReadVisibility(visibility.c_str()); + LOG(LINFO, ("Reading visibility done")); } } diff --git a/iphone/Maps/Classes/MapsAppDelegate.mm b/iphone/Maps/Classes/MapsAppDelegate.mm index 33eb599e56..e07d751ee4 100644 --- a/iphone/Maps/Classes/MapsAppDelegate.mm +++ b/iphone/Maps/Classes/MapsAppDelegate.mm @@ -39,6 +39,7 @@ - (void) applicationDidFinishLaunching: (UIApplication *) application { + LOG(LINFO, ("Application started finishing launching")); // Initialize Sloynik engine. // It takes long for the first time, so we do it while startup image is visible. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{ @@ -52,6 +53,8 @@ // Add the tab bar controller's current view as a subview of the window [window addSubview:mapViewController.view]; [window makeKeyAndVisible]; + + LOG(LINFO, ("Application did finished finishing launching")); } - (GuideViewController *)guideViewController diff --git a/map/framework.hpp b/map/framework.hpp index dee56c4ffd..b56aa4fd8f 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -238,10 +238,12 @@ public: { m_model.InitClassificator(); + LOG(LINFO, ("Initializing storage")); // initializes model with locally downloaded maps storage.Init(bind(&FrameWork::AddMap, this, _1), bind(&FrameWork::RemoveMap, this, _1), bind(&FrameWork::RepaintRect, this, _1)); + LOG(LINFO, ("Storage initialized")); } void InitLocator(shared_ptr const & locator)