Turn off debugging and logging in preparation for a release.

This commit is contained in:
Kevin Ruland 2012-03-14 01:31:56 +00:00
parent a5d982aa4e
commit 34b6151596
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
<application
android:name=".android.Application"
android:debuggable="true"
android:debuggable="false"
android:icon="@drawable/or_launcher"
android:killAfterRestore="true"
android:label="@string/app_name"

View File

@ -9,7 +9,7 @@ import android.util.Log;
public class AndroidLogWrapper {
private static final boolean logEnabled = true;
private static final boolean logEnabled = false;
public static void d( Class clzz, String msg ) {