All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.rest.v2.http.SystemOutLogger Maven / Gradle / Ivy

/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */

package com.microsoft.rest.v2.http;

/**
 * A HttpPipeline RequestPolicy logger that logs to the StdOut/System.out stream.
 */
public class SystemOutLogger extends AbstractHttpPipelineLogger {
    @Override
    public void log(HttpPipelineLogLevel logLevel, String message, Object... formattedArguments) {
        System.out.println(logLevel + ") " + format(message, formattedArguments));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy