forked from organicmaps/organicmaps
more precise logging of invalid styleID
This commit is contained in:
parent
04cb398651
commit
8401ecac15
3 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ namespace yg
|
|||
|
||||
if (style == 0)
|
||||
{
|
||||
LOG(LINFO, ("styleID=", styleID, " wasn't found on current skin."));
|
||||
LOG(LINFO, ("drawArea: styleID=", styleID, " wasn't found on current skin."));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ namespace yg
|
|||
|
||||
if (style == 0)
|
||||
{
|
||||
LOG(LINFO, ("styleID=", styleID, " wasn't found on current skin"));
|
||||
LOG(LINFO, ("drawPath: styleID=", styleID, " wasn't found on current skin"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@ namespace yg
|
|||
ResourceStyle const * style(skin()->fromID(styleID));
|
||||
if (style == 0)
|
||||
{
|
||||
LOG(LINFO, ("styleID=", styleID, " wasn't found on the current skin"));
|
||||
LOG(LINFO, ("drawSymbolImpl: styleID=", styleID, " wasn't found on the current skin"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -86,7 +86,7 @@ namespace yg
|
|||
ResourceStyle const * style(skin()->fromID(styleID));
|
||||
if (style == 0)
|
||||
{
|
||||
LOG(LINFO, ("styleID=", styleID, " wasn't found on the current skin"));
|
||||
LOG(LINFO, ("drawSymbol: styleID=", styleID, " wasn't found on the current skin"));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue