1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2026-08-24 06:43:07 +00:00

set logging to info not debug

This commit is contained in:
Loic Blot
2016-10-07 09:08:43 +02:00
parent d598602cba
commit a4f016f069
14 changed files with 40 additions and 34 deletions
@@ -37,13 +37,13 @@ public class RecoveryPhoneNumberListViewAdapter extends ArrayAdapter<String> {
v.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.d(TAG, "Clicked on phone " + l);
Log.i(TAG, "Clicked on phone " + l);
}
});
v.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Log.d(TAG, "Long clicked on phone " + l);
Log.i(TAG, "Long clicked on phone " + l);
return false;
}
});