123456789101112131415161718192021222324 |
- package com.fdkankan.common.constant;
- /**
- * <p>
- * 日志格式定义
- * </p>
- *
- * @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[{}]";
- }
|