Some additional logging
This commit is contained in:
parent
fd30ec8189
commit
78a5700ded
|
@ -460,12 +460,14 @@ public class UserPreferences implements
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setPrefFastForwardSecs(int secs) {
|
public static void setPrefFastForwardSecs(int secs) {
|
||||||
|
Log.d(TAG, "setPrefFastForwardSecs(" + secs +")");
|
||||||
SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(instance.context).edit();
|
SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(instance.context).edit();
|
||||||
editor.putInt(PREF_FAST_FORWARD_SECS, secs);
|
editor.putInt(PREF_FAST_FORWARD_SECS, secs);
|
||||||
editor.commit();
|
editor.commit();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setPrefRewindSecs(int secs) {
|
public static void setPrefRewindSecs(int secs) {
|
||||||
|
Log.d(TAG, "setPrefRewindSecs(" + secs +")");
|
||||||
SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(instance.context).edit();
|
SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(instance.context).edit();
|
||||||
editor.putInt(PREF_REWIND_SECS, secs);
|
editor.putInt(PREF_REWIND_SECS, secs);
|
||||||
editor.commit();
|
editor.commit();
|
||||||
|
|
Loading…
Reference in New Issue