aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java
diff options
context:
space:
mode:
authormar-v-in <github@rvin.mooo.com>2014-06-06 17:42:28 +0200
committermar-v-in <github@rvin.mooo.com>2014-06-06 17:42:28 +0200
commit5601f1b76f42276950487d635c9ea87006f15621 (patch)
tree74c76bb362cf38d7deff5752853d576b87afc615 /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java
parent55ca0841f6ac9be91fa185442a5c11cebc016441 (diff)
downloadopen-keychain-5601f1b76f42276950487d635c9ea87006f15621.tar.gz
open-keychain-5601f1b76f42276950487d635c9ea87006f15621.tar.bz2
open-keychain-5601f1b76f42276950487d635c9ea87006f15621.zip
Fix TAG in account service as well
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java15
1 files changed, 8 insertions, 7 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java
index d3b29d5cf..008502ce7 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java
@@ -29,6 +29,7 @@ import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.widget.Toast;
+import org.sufficientlysecure.keychain.Constants;
import org.sufficientlysecure.keychain.R;
import org.sufficientlysecure.keychain.util.Log;
@@ -73,7 +74,7 @@ public class DummyAccountService extends Service {
@Override
public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
- Log.d("DummyAccountService", "editProperties");
+ Log.d(Constants.TAG, "DummyAccountService.editProperties");
return null;
}
@@ -82,41 +83,41 @@ public class DummyAccountService extends Service {
String[] requiredFeatures, Bundle options) throws NetworkErrorException {
response.onResult(new Bundle());
toaster.toast(R.string.info_no_manual_account_creation);
- Log.d("DummyAccountService", "addAccount");
+ Log.d(Constants.TAG, "DummyAccountService.addAccount");
return null;
}
@Override
public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options)
throws NetworkErrorException {
- Log.d("DummyAccountService", "confirmCredentials");
+ Log.d(Constants.TAG, "DummyAccountService.confirmCredentials");
return null;
}
@Override
public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType,
Bundle options) throws NetworkErrorException {
- Log.d("DummyAccountService", "getAuthToken");
+ Log.d(Constants.TAG, "DummyAccountService.getAuthToken");
return null;
}
@Override
public String getAuthTokenLabel(String authTokenType) {
- Log.d("DummyAccountService", "getAuthTokenLabel");
+ Log.d(Constants.TAG, "DummyAccountService.getAuthTokenLabel");
return null;
}
@Override
public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType,
Bundle options) throws NetworkErrorException {
- Log.d("DummyAccountService", "updateCredentials");
+ Log.d(Constants.TAG, "DummyAccountService.updateCredentials");
return null;
}
@Override
public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features)
throws NetworkErrorException {
- Log.d("DummyAccountService", "hasFeatures");
+ Log.d(Constants.TAG, "DummyAccountService.hasFeatures");
return null;
}
}