package com.fdkankan.common.constant; /** *

* 日志格式定义 *

* * @author dengsixing * @since 2022/3/26 **/ public class LogFormatConstant { /** * feign接口日志格式 */ public static String FEIGN_LOG_START = "Feign调用开始 - Class[{}] - Method[{}] - Params[{}]"; public static String FEIGN_LOG_END= "Feign调用结束 - Class[{}] - Method[{}] - Result[{}]"; public static String REQUEST_LOG_START = "Controller请求开始 - ip[{}] - url[{}] - Class[{}] - Method[{}] - Params[{}] - header[{}]"; public static String REQUEST_LOG_END = "Controller请求结束 - url[{}] - Class[{}] - Method[{}] - Result[{}] - consumeTime[{}]"; }