Add error logging when reading user profile from server

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2021-05-26 14:26:37 +02:00
parent 799acc4f81
commit 02a129c3fc
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B

View File

@ -194,6 +194,7 @@ public class ProfileController extends BaseController {
@Override
public void onError(@io.reactivex.annotations.NonNull Throwable e) {
Log.e(TAG, "Error loading editable user profile from server", e);
edit = false;
}
@ -365,6 +366,7 @@ public class ProfileController extends BaseController {
@Override
public void onError(@io.reactivex.annotations.NonNull Throwable e) {
Log.e(TAG, "Error loading editable user profile from server", e);
edit = false;
}