Disabled logging options until fixed

This commit is contained in:
David A. Velasco 2013-06-26 09:13:28 +02:00
parent 863f3f68d2
commit 0f2a7475b1
2 changed files with 6 additions and 2 deletions

View file

@ -35,12 +35,13 @@
android:disableDependentsState="true"
android:title="@string/instant_upload_on_wifi"
android:key="instant_upload_on_wifi"/>
<CheckBoxPreference android:key="log_to_file"
<!-- DISABLED FOR RELEASE UNTIL FIXED
CheckBoxPreference android:key="log_to_file"
android:title="@string/prefs_log_title"
android:summary="@string/prefs_log_summary"/>
<Preference android:key="log_history"
android:title="@string/prefs_log_title_history"
android:summary="@string/prefs_log_summary_history"/>
android:summary="@string/prefs_log_summary_history"/ -->
<Preference android:id="@+id/about_app"
android:title="@string/about_title"
android:key="about_app" />

View file

@ -111,6 +111,7 @@ public class Preferences extends SherlockPreferenceActivity implements OnPrefere
}
}
/* DISABLED FOR RELEASE UNTIL FIXED
pLogging = (CheckBoxPreference) findPreference("log_to_file");
if (pLogging != null) {
pLogging.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
@ -145,6 +146,8 @@ public class Preferences extends SherlockPreferenceActivity implements OnPrefere
}
});
}
*/
}
}