Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2016-07-08 10:47:07 +0300
committerMaxim Pimenov <m@maps.me>2016-07-08 10:47:27 +0300
commit1d17de227b7f623d1ae474a010a5369d868da531 (patch)
treec8d2350d751576c802b52edf6bcc97e3ca55afc3 /indexer/osm_editor.cpp
parent8ab66e000627a55fd8bb60f2f09b47b18edbd348 (diff)
[editor] Log the missing feature error.
Diffstat (limited to 'indexer/osm_editor.cpp')
-rw-r--r--indexer/osm_editor.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/indexer/osm_editor.cpp b/indexer/osm_editor.cpp
index 00ae1161b2..ec78775ca8 100644
--- a/indexer/osm_editor.cpp
+++ b/indexer/osm_editor.cpp
@@ -225,12 +225,7 @@ void Editor::LoadMapEdits()
if (!originalFeaturePtr)
{
LOG(LERROR, ("A feature with id", fid, "cannot be loaded."));
- // TODO: alohalytics::LogEvent in this function leads to a linker error
- // with complains on alohalytics::Stats::Instance() reference is missing.
- // The problem remains even when the whole code but alohalytics::LogEvent
- // is removed in this function. There are no problems with this call in
- // other functions.
- // alohalytics::LogEvent("Editor_MissingFeature_Error");
+ alohalytics::LogEvent("Editor_MissingFeature_Error");
goto SECTION_END;
}