/** * Copyright Microsoft Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.microsoft.azure.storage.core; /** * RESERVED FOR INTERNAL USE. Provides a standard set of log messages that could be produced by the client library. */ public class LogConstants { public static final String COMPLETE = "Operation completed."; public static final String DO_NOT_RETRY_POLICY = "Retry policy did not allow for a retry. Failing. Error Message = '%s'."; public static final String DO_NOT_RETRY_TIMEOUT = "Operation cannot be retried because maximum execution timeout has been reached. Failing. Inner error Message = '%s'."; public static final String GET_RESPONSE = "Waiting for response."; public static final String INIT_LOCATION = "Starting operation with location '%s' per location mode '%s'."; public static final String NEXT_LOCATION = "The next location has been set to '%s', per location mode '%s'."; public static final String POST_PROCESS = "Processing response body."; public static final String POST_PROCESS_DONE = "Response body was parsed successfully."; public static final String PRE_PROCESS = "Processing response headers."; public static final String PRE_PROCESS_DONE = "Response headers were processed successfully."; public static final String RESPONSE_RECEIVED = "Response received. Status code = '%d', Request ID = '%s', Content-MD5 = '%s', ETag = '%s'."; public static final String RETRY = "Retrying failed operation."; public static final String RETRY_CHECK = "Checking if the operation should be retried. Retry count = '%d', HTTP status code = '%d', Error Message = '%s'."; public static final String RETRY_DELAY = "Operation will be retried after '%d'ms."; public static final String RETRY_INFO = "The retry policy set the next location to '%s' and updated the location mode to '%s'."; public static final String RETRYABLE_EXCEPTION = "Retryable exception thrown. Class = '%s', Message = '%s'."; public static final String START_REQUEST = "Starting request to '%s' at '%s'."; public static final String STARTING = "Starting operation."; public static final String UNEXPECTED_RESULT_OR_EXCEPTION = "Operation did not return the expected result or returned an exception."; public static final String UNRETRYABLE_EXCEPTION = "Un-retryable exception thrown. Class = '%s', Message = '%s'."; public static final String UPLOAD = "Writing request data."; public static final String UPLOADDONE = "Request data was written successfully."; }