Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8850a812 authored by David A. Velasco's avatar David A. Velasco
Browse files

Merge pull request #58 from owncloud/extra_log_message

Extra log message (originally in #48)
parents 2b2fc917 415d059f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -350,6 +350,8 @@ public class RemoteOperationResult implements Serializable {
            return "Authenticated with a different account than the one updating";
        } else if (mCode == ResultCode.INVALID_CHARACTER_IN_NAME) {
                return "The file name contains an forbidden character";
        } else if (mCode == ResultCode.FILE_NOT_FOUND) {
	  	return "Local file does not exist";
 	}

        return "Operation finished with HTTP status code " + mHttpCode + " (" + (isSuccess() ? "success" : "fail") + ")";