1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

remove debug statements

This commit is contained in:
Christian Schabesberger 2021-11-21 12:48:47 +01:00
parent 5ca99a0e69
commit fc8440cc01
2 changed files with 1 additions and 25 deletions

View File

@ -33,7 +33,7 @@ class ConnectionValidator (
client.account = baseClient.account client.account = baseClient.account
client.credentials = baseClient.credentials client.credentials = baseClient.credentials
while (validationRetryCount < VALIDATION_RETRY_COUNT) { while (validationRetryCount < VALIDATION_RETRY_COUNT) {
Timber.d("+++++++++++++++++++++++++++++++++++++ validationRetryCout %d", validationRetryCount) Timber.d("validationRetryCout %d", validationRetryCount)
var successCounter = 0 var successCounter = 0
var failCounter = 0 var failCounter = 0

View File

@ -56,7 +56,6 @@ public class OwnCloudClient extends HttpClient {
public static final String WEBDAV_FILES_PATH_4_0 = "/remote.php/dav/files/"; public static final String WEBDAV_FILES_PATH_4_0 = "/remote.php/dav/files/";
public static final String STATUS_PATH = "/status.php"; public static final String STATUS_PATH = "/status.php";
private static final String WEBDAV_UPLOADS_PATH_4_0 = "/remote.php/dav/uploads/"; private static final String WEBDAV_UPLOADS_PATH_4_0 = "/remote.php/dav/uploads/";
private static final int MAX_REDIRECTIONS_COUNT = 5;
private static final int MAX_RETRY_COUNT = 2; private static final int MAX_RETRY_COUNT = 2;
private static int sIntanceCounter = 0; private static int sIntanceCounter = 0;
@ -137,7 +136,6 @@ public class OwnCloudClient extends HttpClient {
} }
status = method.execute(); status = method.execute();
stacklog(status, method);
if (!mFollowRedirects && if (!mFollowRedirects &&
!method.getFollowRedirects() && !method.getFollowRedirects() &&
@ -156,28 +154,6 @@ public class OwnCloudClient extends HttpClient {
return status; return status;
} }
private void stacklog(int status, HttpBaseMethod method) {
try {
throw new Exception("Stack log");
} catch(Exception e) {
Timber.d("\n---------------------------" +
"\nresponsecode: " + status +
"\nThread: " + Thread.currentThread().getName() +
"\nobject: " + this.toString() +
"\nMethod: " + method.toString() +
"\nUrl: " + method.getHttpUrl() +
"\nCookeis: " + getCookiesForBaseUri().toString() +
"\nCredentials type: " + mCredentials.getClass().toString() +
"\ntoken: " + mCredentials.getAuthToken() +
"\nHeaders: ++++" +
"\n" + method.getRequest().headers().toString() +
"+++++++++++++" +
"\ntrace: " + ExceptionUtils.getStackTrace(e) +
"---------------------------");
}
}
/** /**
* Exhausts a not interesting HTTP response. Encouraged by HttpClient documentation. * Exhausts a not interesting HTTP response. Encouraged by HttpClient documentation.
* *