Disable logger by default

This commit is contained in:
Hristo Hristov
2016-02-29 12:05:20 +02:00
parent 160318559c
commit 1641ffbb4d

View File

@@ -45,7 +45,7 @@ public class RuntimeHelper
{
System.loadLibrary("NativeScript");
Logger logger = new LogcatLogger(true, app);
Logger logger = new LogcatLogger(false, app);
boolean showErrorIntent = hasErrorIntent();
if (!showErrorIntent)
@@ -105,4 +105,4 @@ public class RuntimeHelper
}
private final String logTag = "MyApp";
}
}