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

org.macrocloud.kernel.launch.log.BaseLogLevel Maven / Gradle / Ivy

The newest version!

package org.macrocloud.kernel.launch.log;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

/**
 * 请求日志级别,来源 okHttp
 *
 * @author macro
 */
@Getter
@RequiredArgsConstructor
public enum BaseLogLevel {
	/**
	 * No logs.
	 */
	NONE(0),

	/**
	 * Logs request and response lines.
	 *
	 * 

* Example: * *

{@code
	 * --> POST /greeting http/1.1 (3-byte body)
	 *
	 * <-- 200 OK (22ms, 6-byte body)
	 * }
*/ BASIC(1), /** * Logs request and response lines and their respective headers. * *

* Example: * *

{@code
	 * --> POST /greeting http/1.1
	 * Host: example.com
	 * Content-Type: plain/text
	 * Content-Length: 3
	 * --> END POST
	 *
	 * <-- 200 OK (22ms)
	 * Content-Type: plain/text
	 * Content-Length: 6
	 * <-- END HTTP
	 * }
*/ HEADERS(2), /** * Logs request and response lines and their respective headers and bodies (if * present). * *

* Example: * *

{@code
	 * --> POST /greeting http/1.1
	 * Host: example.com
	 * Content-Type: plain/text
	 * Content-Length: 3
	 *
	 * Hi?
	 * --> END POST
	 *
	 * <-- 200 OK (22ms)
	 * Content-Type: plain/text
	 * Content-Length: 6
	 *
	 * Hello!
	 * <-- END HTTP
	 * }
*/ BODY(3); /** * 请求日志配置前缀 */ public static final String REQ_LOG_PROPS_PREFIX = "kernel.log.request"; /** * 控制台日志是否启用 */ public static final String CONSOLE_LOG_ENABLED_PROP = "kernel.log.console.enabled"; /** * 级别 */ private final int level; /** * 当前版本 小于和等于 比较的版本 * * @param level LogLevel * @return 是否小于和等于 */ public boolean lte(BaseLogLevel level) { return this.level <= level.level; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy