Log error message when switching local storage provider fails.
This commit is contained in:
parent
4aaabddfa5
commit
7e824fc748
1 changed files with 2 additions and 0 deletions
|
@ -683,6 +683,8 @@ public class Account implements BaseAccount {
|
|||
switchLocalStorage(id);
|
||||
successful = true;
|
||||
} catch (MessagingException e) {
|
||||
Log.e(K9.LOG_TAG, "Switching local storage provider from " +
|
||||
mLocalStorageProviderId + " to " + id + " failed.", e);
|
||||
} finally {
|
||||
// if migration to/from SD-card failed once, it will fail again.
|
||||
if (!successful) {
|
||||
|
|
Loading…
Reference in a new issue