forked from organicmaps/organicmaps
Hide exception logs in release.
This commit is contained in:
parent
9668be6c7c
commit
f55dd20f27
1 changed files with 4 additions and 2 deletions
|
@ -85,7 +85,8 @@ public class AdsManager
|
|||
sMenuAds = parseMenuAds(featuresJson);
|
||||
} catch (JSONException e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
if (BuildConfig.DEBUG)
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
try
|
||||
|
@ -93,7 +94,8 @@ public class AdsManager
|
|||
sBanners = parseBanners(featuresJson);
|
||||
} catch (JSONException e)
|
||||
{
|
||||
e.printStackTrace();
|
||||
if (BuildConfig.DEBUG)
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue