码迷,mamicode.com
首页 > 编程语言 > 详细

SpringCloud增加Feign日志打印

时间:2019-07-07 20:14:54      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:public   logging   open   org   conf   cat   log   接口   byte   

一、FeignConfiguration.class
package com.xiaohang.socialcard.pre.feign;

import feign.Logger;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class FeignConfiguration {
    @Bean
    Logger.Level feignLoggerLevel() {
        //这里记录所有,根据实际情况选择合适的日志level
        return Logger.Level.FULL;
    }
}

二、Application.yml配置需要打印Feign请求日志的API接口

logging.level.com.xiaohang.socialcard.pre.feign.ChangShaApi: debug

三、打印示例:

2019-07-05 17:32:42.478 DEBUG 99302 --- [ngsha-payment-3] c.x.socialcard.pre.feign.ChangShaApi     : [ChangShaApi#getToken] ---> GET http://xx.xx.xx.xx:xxxx/openInter/getToken?
......
2019-07-05 17:32:42.566 DEBUG 99302 --- [ngsha-payment-3] c.x.socialcard.pre.feign.ChangShaApi     : [ChangShaApi#getToken] <--- END HTTP (454-byte body)

SpringCloud增加Feign日志打印

标签:public   logging   open   org   conf   cat   log   接口   byte   

原文地址:https://blog.51cto.com/12012821/2417865

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!