Browse Source

Replace Log.wtf calls with Log.e

Andy Scherzinger 8 years ago
parent
commit
a6bd6030d2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/com/owncloud/android/ui/activity/BaseActivity.java

+ 1 - 1
src/com/owncloud/android/ui/activity/BaseActivity.java

@@ -152,7 +152,7 @@ public abstract class BaseActivity extends AppCompatActivity {
             mStorageManager = new FileDataStorageManager(getAccount(), getContentResolver());
             mCapabilities = mStorageManager.getCapability(mCurrentAccount.name);
         } else {
-            Log_OC.wtf(TAG, "onAccountChanged was called with NULL account associated!");
+            Log_OC.e(TAG, "onAccountChanged was called with NULL account associated!");
         }
     }