diff --git a/routing/cross_mwm_graph.cpp b/routing/cross_mwm_graph.cpp index 805a243865..6d550b24c3 100644 --- a/routing/cross_mwm_graph.cpp +++ b/routing/cross_mwm_graph.cpp @@ -146,7 +146,9 @@ void CrossMwmGraph::GetTwins(Segment const & s, bool isOutgoing, vector bool allNeighborsHaveCrossMwmSection = false; GetAllLoadedNeighbors(s.GetMwmId(), neighbors, allNeighborsHaveCrossMwmSection); MwmStatus const currentMwmStatus = GetMwmStatus(s.GetMwmId()); - CHECK(currentMwmStatus != MwmStatus::NotLoaded, ("Current mwm is not loaded. Mwm:", m_numMwmIds->GetFile(s.GetMwmId()))); + CHECK(currentMwmStatus != MwmStatus::NotLoaded, + ("Current mwm is not loaded. Mwm:", m_numMwmIds->GetFile(s.GetMwmId()), "currentMwmStatus:", + currentMwmStatus)); if (allNeighborsHaveCrossMwmSection && currentMwmStatus == MwmStatus::CrossMwmSectionExists) { DeserializeTransitions(neighbors);