removed a message that is too annoying in the log
This commit is contained in:
parent
6bd55d7946
commit
0eadf5061e
|
@ -64,7 +64,7 @@ public class KeychainModule extends ReactContextBaseJavaModule {
|
||||||
prefsEditor.putString(service + ":u", encryptedUsername);
|
prefsEditor.putString(service + ":u", encryptedUsername);
|
||||||
prefsEditor.putString(service + ":p", encryptedPassword);
|
prefsEditor.putString(service + ":p", encryptedPassword);
|
||||||
prefsEditor.apply();
|
prefsEditor.apply();
|
||||||
Log.d("KeychainModule saved the data");
|
Log.d("KeychainModule", "saved the data");
|
||||||
callback.invoke("", "KeychainModule saved the data");
|
callback.invoke("", "KeychainModule saved the data");
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Log.e("KeychainModule ", e.getLocalizedMessage());
|
Log.e("KeychainModule ", e.getLocalizedMessage());
|
||||||
|
|
Loading…
Reference in New Issue