mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-24 13:56:14 +03:00
more logging (#145)
This commit is contained in:
parent
abf8dc4702
commit
5895dc113b
2 changed files with 12 additions and 0 deletions
|
@ -172,6 +172,7 @@ public class NoteServerSyncHelper {
|
|||
private final boolean onlyLocalChanges;
|
||||
private final List<ICallback> callbacks = new ArrayList<>();
|
||||
private NotesClient client;
|
||||
private List<Throwable> exceptions = new ArrayList<>();
|
||||
|
||||
public SyncTask(boolean onlyLocalChanges) {
|
||||
this.onlyLocalChanges = onlyLocalChanges;
|
||||
|
@ -293,8 +294,12 @@ public class NoteServerSyncHelper {
|
|||
}
|
||||
status = LoginStatus.OK;
|
||||
} catch (IOException e) {
|
||||
Log.e(getClass().getSimpleName(), "Exception", e);
|
||||
exceptions.add(e);
|
||||
status = LoginStatus.CONNECTION_FAILED;
|
||||
} catch (JSONException e) {
|
||||
Log.e(getClass().getSimpleName(), "Exception", e);
|
||||
exceptions.add(e);
|
||||
status = LoginStatus.JSON_FAILED;
|
||||
}
|
||||
return status;
|
||||
|
@ -305,6 +310,9 @@ public class NoteServerSyncHelper {
|
|||
super.onPostExecute(status);
|
||||
if (status!=LoginStatus.OK) {
|
||||
Toast.makeText(appContext, appContext.getString(R.string.error_sync, appContext.getString(status.str)), Toast.LENGTH_LONG).show();
|
||||
for (Throwable e : exceptions) {
|
||||
Toast.makeText(appContext, e.getClass().getName() + ": " + e.getMessage(), Toast.LENGTH_LONG).show();
|
||||
}
|
||||
}
|
||||
syncActive = false;
|
||||
// notify callbacks
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package it.niedermann.owncloud.notes.util;
|
||||
|
||||
import android.util.Base64;
|
||||
import android.util.Log;
|
||||
|
||||
import org.json.JSONArray;
|
||||
import org.json.JSONException;
|
||||
|
@ -80,10 +81,13 @@ public class NotesClientUtil {
|
|||
return LoginStatus.SERVER_FAILED;
|
||||
}
|
||||
} catch (MalformedURLException e) {
|
||||
Log.e(NotesClientUtil.class.getSimpleName(), "Exception", e);
|
||||
return LoginStatus.CONNECTION_FAILED;
|
||||
} catch (IOException e) {
|
||||
Log.e(NotesClientUtil.class.getSimpleName(), "Exception", e);
|
||||
return LoginStatus.CONNECTION_FAILED;
|
||||
} catch (JSONException e) {
|
||||
Log.e(NotesClientUtil.class.getSimpleName(), "Exception", e);
|
||||
return LoginStatus.JSON_FAILED;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue