From 28acbc92379c44eb901e07916c0db46e89530330 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Tue, 5 Apr 2016 15:31:25 +0300 Subject: [PATCH] More information in case of wrong param passed to GetNodeStatuses --- storage/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/storage.cpp b/storage/storage.cpp index d499a9a47e..997ceb08f3 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -1402,7 +1402,7 @@ void Storage::GetNodeStatuses(TCountryId const & countryId, NodeStatuses & nodeS ASSERT_THREAD_CHECKER(m_threadChecker, ()); TCountryTreeNode const * const node = m_countries.FindFirst(countryId); - CHECK(node, ()); + CHECK(node, (countryId)); StatusAndError statusAndErr = GetNodeStatus(*node); nodeStatuses.m_status = statusAndErr.status;