{"id":5896,"date":"2022-05-12T14:45:40","date_gmt":"2022-05-12T06:45:40","guid":{"rendered":"http:\/\/123.57.164.21\/?p=5896"},"modified":"2022-05-12T14:45:40","modified_gmt":"2022-05-12T06:45:40","slug":"springboot-%e6%97%a5%e5%bf%97%e7%9a%84%e9%85%8d%e7%bd%ae%e5%92%8c%e4%bd%bf%e7%94%a8%e8%af%a6%e8%a7%a3%ef%bc%88slf4j%e3%80%81logback%ef%bc%89","status":"publish","type":"post","link":"https:\/\/92it.top\/?p=5896","title":{"rendered":"SpringBoot &#8211; \u65e5\u5fd7\u7684\u914d\u7f6e\u548c\u4f7f\u7528\u8be6\u89e3\uff08SLF4j\u3001Logback\uff09"},"content":{"rendered":"\n<p><strong>1\uff0c\u57fa\u672c\u4ecb\u7ecd<\/strong><\/p>\n\n\n\n<p>\uff081\uff09\u5e02\u9762\u4e0a\u5e38\u89c1\u7684\u65e5\u5fd7\u6846\u67b6\u6709\u5f88\u591a\u3002\u901a\u5e38\u60c5\u51b5\u4e0b\uff0c\u65e5\u5fd7\u662f\u7531\u4e00\u4e2a\u62bd\u8c61\u5c42+\u5b9e\u73b0\u5c42\u7684\u7ec4\u5408\u6765\u642d\u5efa\u7684\uff0c\u800c\u7528\u6237\u901a\u5e38\u6765\u8bf4\u4e0d\u5e94\u8be5\u76f4\u63a5\u4f7f\u7528\u5177\u4f53\u7684\u65e5\u5fd7\u5b9e\u73b0\u7c7b\uff0c\u5e94\u8be5\u4f7f\u7528\u65e5\u5fd7\u7684\u62bd\u8c61\u5c42\u3002<br><\/p>\n\n\n\n<ul><li>\u62bd\u8c61\u5c42\uff1aJCL\uff08Jakarta Commons Logging\uff09\u3001SLF4j\uff08Simple Logging Facade for Java\uff09\u3001jboss-logging<\/li><li>\u5b9e\u73b0\u5c42\uff1aLog4j \u3001JUL\uff08java.util.logging\uff09\u3001Log4j2\u3001Logback<\/li><\/ul>\n\n\n\n<p>\uff082\uff09<strong>SpringBoot<\/strong> \u9ed8\u8ba4\u9009\u62e9\u7684\u662f <strong>SLF4J <\/strong>+ <strong>Logback <\/strong>\u7684\u7ec4\u5408\uff0c\u5982\u679c\u4e0d\u9700\u8981\u66f4\u6539\u4e3a\u5176\u4ed6\u65e5\u5fd7\u7cfb\u7edf\uff08\u5982 <strong>Log4j2 <\/strong>\u7b49\uff09\uff0c\u5219\u65e0\u9700\u591a\u4f59\u7684\u914d\u7f6e\uff0c<strong>LogBack <\/strong>\u9ed8\u8ba4\u4f1a\u5c06\u65e5\u5fd7\u6253\u5370\u5230\u63a7\u5236\u53f0\u4e0a\u3002<\/p>\n\n\n\n<p>\u7531\u4e8e\u65b0\u5efa\u7684 Spring Boot \u9879\u76ee\u4e00\u822c\u90fd\u4f1a\u5f15\u7528 spring-boot-starter \u6216\u8005 spring-boot-starter-web\uff0c\u800c\u8fd9\u4e24\u4e2a\u8d77\u6b65\u4f9d\u8d56\u4e2d\u90fd\u5df2\u7ecf\u5305\u542b\u4e86\u5bf9\u4e8e spring-boot-starter-logging \u7684\u4f9d\u8d56\uff0c\u6240\u4ee5\uff0c\u6211\u4eec\u65e0\u9700\u989d\u5916\u6dfb\u52a0\u4f9d\u8d56\u3002<\/p>\n\n\n\n<p><strong>2\uff0c\u57fa\u672c\u7528\u6cd5<\/strong><\/p>\n\n\n\n<p>\uff081\uff09\u8fd9\u91cc\u6211\u4eec\u6253\u5370\u51fa <strong>5 <\/strong>\u79cd\u4e0d\u540c\u7ea7\u522b\u7684\u65e5\u5fd7\uff0c\u53ef\u4ee5\u770b\u5230\u63a7\u5236\u53f0\u4f1a\u8f93\u51fa\u76f8\u5173\u65e5\u5fd7\u4fe1\u606f\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">@RestController\npublic class HelloController {\n \n    Logger logger = LoggerFactory.getLogger(getClass());\n \n    @GetMapping(\"\/test\")\n    public void test(){\n        logger.trace(\"Trace \u65e5\u5fd7...\");\n        logger.debug(\"Debug \u65e5\u5fd7...\");\n        logger.info(\"Info \u65e5\u5fd7...\");\n        logger.warn(\"Warn \u65e5\u5fd7...\");\n        logger.error(\"Error \u65e5\u5fd7...\");\n    }\n}<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-1024x159.png\" alt=\"\" class=\"wp-image-5897\" width=\"632\" height=\"98\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-1024x159.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-300x47.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-768x120.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-830x129.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-230x36.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-350x54.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95-480x75.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-95.png 1516w\" sizes=\"(max-width: 632px) 100vw, 632px\" \/><\/figure><\/div>\n\n\n\n<p>\uff082\uff09\u5982\u679c\u9879\u76ee\u6709\u4f7f\u7528\u00a0<strong>Lombok <\/strong>\u7684\u8bdd\uff0c\u76f4\u63a5\u4f7f\u7528 <strong>@Slf4j <\/strong>\u6ce8\u89e3\u53ef\u4ee5\u7701\u53bb\u4ece\u65e5\u5fd7\u5de5\u5382\u751f\u6210\u65e5\u5fd7\u5bf9\u8c61\u8fd9\u4e00\u6b65\uff0c\u76f4\u63a5\u8fdb\u884c\u65e5\u5fd7\u8bb0\u5f55\u3002\u4e0b\u9762\u4ee3\u7801\u7684\u6548\u679c\u540c\u4e0a\u9762\u662f\u4e00\u6837\u7684\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">@RestController\n@Slf4j\npublic class HelloController {\n \n    @GetMapping(\"\/test\")\n    public void test(){\n        log.trace(\"Trace \u65e5\u5fd7...\");\n        log.debug(\"Debug \u65e5\u5fd7...\");\n        log.info(\"Info \u65e5\u5fd7...\");\n        log.warn(\"Warn \u65e5\u5fd7...\");\n        log.error(\"Error \u65e5\u5fd7...\");\n    }\n}\n<\/pre>\n\n\n\n<p><strong>3\uff0c\u8bbe\u7f6e\u65e5\u5fd7\u7ea7\u522b<\/strong><\/p>\n\n\n\n<p>\uff081\uff09\u65e5\u5fd7\u7ea7\u522b\u4ece\u5c0f\u5230\u5927\u4e3a <strong>trace <\/strong>&lt; <strong>debug <\/strong>&lt; <strong>info <\/strong>&lt; <strong>warn <\/strong>&lt; <strong>error <\/strong>&lt; <strong>fatal<\/strong>\uff0c\u7531\u4e8e\u9ed8\u8ba4\u65e5\u5fd7\u7ea7\u522b\u8bbe\u7f6e\u4e3a <strong>INFO<\/strong>\uff0c\u56e0\u6b64\u4e0a\u9762\u6837\u4f8b <strong>trace <\/strong>\u548c <strong>debug <\/strong>\u7ea7\u522b\u7684\u65e5\u5fd7\u90fd\u770b\u4e0d\u5230\u3002<\/p>\n\n\n\n<p>\uff082\uff09\u6211\u4eec\u53ef\u4ee5\u5728 <strong>applicaition.properties<\/strong>\u00a0\u6587\u4ef6\u4e2d\u4fee\u6539\u65e5\u5fd7\u7ea7\u522b\u3002\u6bd4\u5982\u4e0b\u9762\u5c06\u5168\u5c40\u65e5\u5fd7\u7ea7\u522b\u90fd\u6539\u6210 <strong>trace<\/strong>\uff0c\u56e0\u6b64\u7cfb\u7edf\u6240\u6709\u7684\u65e5\u5fd7\u90fd\u80fd\u770b\u5230\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">logging.level.root=trace<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-1024x216.png\" alt=\"\" class=\"wp-image-5898\" width=\"686\" height=\"145\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-1024x216.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-300x63.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-768x162.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-1536x324.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-830x175.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-230x48.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-350x74.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96-480x101.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-96.png 1538w\" sizes=\"(max-width: 686px) 100vw, 686px\" \/><\/figure><\/div>\n\n\n\n<p>\uff083\uff09\u6211\u4eec\u4e5f\u53ef\u4ee5\u53ea\u8bbe\u7f6e\u67d0\u4e2a\u5305\u7684\u65e5\u5fd7\u7ea7\u522b\uff0c\u8fd9\u6837\u80fd\u591f\u66f4\u65b9\u4fbf\u51c6\u786e\u5730\u5b9a\u4f4d\u95ee\u9898\u3002\u6bd4\u5982\u4e0b\u9762\u914d\u7f6e\uff0c\u53ea\u5bf9\u6240\u6709<strong> com.example <\/strong>\u5305\u4e0b\u9762\u4ea7\u751f\u7684\u65e5\u5fd7\u7ea7\u522b\u6539\u6210 <strong>trace<\/strong>\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">logging.level.com.example=trace<\/pre>\n\n\n\n<p><br><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-1024x171.png\" alt=\"\" class=\"wp-image-5899\" width=\"697\" height=\"116\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-1024x171.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-300x50.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-768x129.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-830x139.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-230x38.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-350x59.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97-480x80.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-97.png 1518w\" sizes=\"(max-width: 697px) 100vw, 697px\" \/><\/figure><\/div>\n\n\n\n<p><strong>4\uff0c\u751f\u6210\u65e5\u5fd7\u6587\u4ef6<\/strong><\/p>\n\n\n\n<p>\uff081\uff09\u9664\u4e86\u5c06\u65e5\u5fd7\u6253\u5370\u5230\u63a7\u5236\u53f0\u4e2d\uff0c\u9879\u76ee\u4e0a\u7ebf\u540e\u901a\u5e38\u8fd8\u9700\u8981\u5c06\u65e5\u5fd7\u8f93\u51fa\u5230\u6587\u4ef6\u3002\u6211\u4eec\u53ea\u9700\u8981\u901a\u8fc7<strong> logging.file.path<\/strong> \u914d\u7f6e\u6587\u4ef6\u5b58\u653e\u8def\u5f84\u5373\u53ef\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">logging.file.path=\/Volumes\/BOOTCAMP\/log<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98.png\" alt=\"\" class=\"wp-image-5900\" width=\"449\" height=\"188\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98.png 838w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98-300x125.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98-768x321.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98-830x347.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98-230x96.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98-350x146.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-98-480x200.png 480w\" sizes=\"(max-width: 449px) 100vw, 449px\" \/><\/figure><\/div>\n\n\n\n<p>\uff082\uff09\u901a\u8fc7<strong> logging.file.path <\/strong>\u751f\u6210\u7684\u65e5\u5fd7\u6587\u4ef6\u540d\u5b57\u4e3a <strong>spring.log<\/strong>\uff0c\u5982\u679c\u9700\u8981\u81ea\u5b9a\u4e49\u6587\u4ef6\u540d\u5b57\uff0c\u5219\u901a\u8fc7 <strong>logging.file.name <\/strong>\u5c5e\u6027\u8fdb\u884c\u914d\u7f6e\uff08\u6b64\u65f6\u4e0d\u9700\u8981\u518d\u914d\u7f6e<strong> logging.file.path<\/strong>\uff09\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">logging.file.name=\/Volumes\/BOOTCAMP\/log\/my.log<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-99.png\" alt=\"\" class=\"wp-image-5901\" width=\"443\" height=\"217\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-99.png 714w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-99-300x147.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-99-230x113.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-99-350x172.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-99-480x235.png 480w\" sizes=\"(max-width: 443px) 100vw, 443px\" \/><\/figure><\/div>\n\n\n\n<p>\uff083\uff09\u65e0\u8bba\u4f55\u79cd\u8bbe\u7f6e\uff0c<strong>Spring Boot<\/strong> \u90fd\u4f1a\u81ea\u52a8\u6309\u5929\u5206\u5272\u65e5\u5fd7\u6587\u4ef6\uff0c\u4e5f\u5c31\u662f\u8bf4\u6bcf\u5929\u90fd\u4f1a\u81ea\u52a8\u751f\u6210\u4e00\u4e2a\u65b0\u7684 <strong>log <\/strong>\u6587\u4ef6\uff0c\u800c\u4e4b\u524d\u7684\u4f1a\u81ea\u52a8\u6253\u6210 <strong>GZ <\/strong>\u538b\u7f29\u5305\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100.png\" alt=\"\" class=\"wp-image-5902\" width=\"451\" height=\"208\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100.png 920w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100-300x138.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100-768x354.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100-830x383.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100-230x106.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100-350x161.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-100-480x221.png 480w\" sizes=\"(max-width: 451px) 100vw, 451px\" \/><\/figure><\/div>\n\n\n\n<p>\uff084\uff09\u9664\u6b64\u4e4b\u5916\uff0c\u6211\u4eec\u8fd8\u53ef\u4ee5\u8bbe\u7f6e\u65e5\u5fd7\u6587\u4ef6\u7684\u4fdd\u7559\u65f6\u95f4\uff0c\u4ee5\u53ca\u5355\u4e2a\u6587\u4ef6\u7684\u5927\u5c0f\uff1a\u00a0<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># \u65e5\u5fd7\u6587\u4ef6\u5927\u5c0f\nlogging.file.max-size=10MB\n# \u4fdd\u7559\u7684\u65e5\u5fd7\u65f6\u95f4\nlogging.file.max-history=10<\/pre>\n\n\n\n<p><strong>5\uff0c\u65e5\u5fd7\u8f93\u51fa\u683c\u5f0f\u914d\u7f6e<\/strong><\/p>\n\n\n\n<p>\uff081\uff09\u6211\u4eec\u53ef\u4ee5\u5206\u522b\u4fee\u6539\u5728\u63a7\u5236\u53f0\u8f93\u51fa\u7684\u65e5\u5fd7\u683c\u5f0f\uff0c\u4ee5\u53ca\u6587\u4ef6\u4e2d\u65e5\u5fd7\u8f93\u51fa\u7684\u683c\u5f0f\uff1a<\/p>\n\n\n\n<p>\u7b26\u53f7\u8bf4\u660e<strong>\uff1a<\/strong><\/p>\n\n\n\n<ul><li>%d{HH:mm:ss.SSS}\uff1a\u65e5\u5fd7\u8f93\u51fa\u65f6\u95f4<\/li><li>%-5level\uff1a\u65e5\u5fd7\u7ea7\u522b\uff0c\u5e76\u4e14\u4f7f\u7528 5 \u4e2a\u5b57\u7b26\u9760\u5de6\u5bf9\u9f50<\/li><li>%thread\uff1a\u8f93\u51fa\u65e5\u5fd7\u7684\u8fdb\u7a0b\u540d\u5b57\uff0c\u8fd9\u5728 Web \u5e94\u7528\u4ee5\u53ca\u5f02\u6b65\u4efb\u52a1\u5904\u7406\u4e2d\u5f88\u6709\u7528<\/li><li>%logger\uff1a\u65e5\u5fd7\u8f93\u51fa\u8005\u7684\u540d\u5b57<\/li><li>%msg\uff1a\u65e5\u5fd7\u6d88\u606f<\/li><li>%n\uff1a\u5e73\u53f0\u7684\u6362\u884c\u7b26<\/li><\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># \u4fee\u6539\u5728\u63a7\u5236\u53f0\u8f93\u51fa\u7684\u65e5\u5fd7\u683c\u5f0f\nlogging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger : %msg%n\n# \u4fee\u6539\u8f93\u51fa\u5230\u6587\u4ef6\u7684\u65e5\u5fd7\u683c\u5f0f\nlogging.pattern.file=%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%thread] %logger : %msg%n<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-1024x171.png\" alt=\"\" class=\"wp-image-5903\" width=\"699\" height=\"117\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-1024x171.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-300x50.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-768x128.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-1536x256.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-830x139.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-230x38.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-350x58.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101-480x80.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-101.png 1558w\" sizes=\"(max-width: 699px) 100vw, 699px\" \/><\/figure><\/div>\n\n\n\n<p>\uff082\uff09\u4e0a\u9762\u6548\u679c\u56fe\u53ef\u4ee5\u53d1\u73b0\uff0c\u539f\u5148<strong> Spring Boot <\/strong>\u9ed8\u8ba4\u4f7f\u7528 <strong>Logback <\/strong>\u6765\u8fdb\u884c\u65e5\u5fd7\u8f93\u51fa\u65f6\uff0c\u63a7\u5236\u53f0\u4e0d\u540c\u53c2\u6570\u4f1a\u8f93\u51fa\u4e3a\u4e0d\u540c\u7684\u989c\u8272\u3002\u800c\u4e00\u65e6\u6211\u4eec\u4fee\u6539\u4e86\u65e5\u5fd7\u683c\u5f0f\uff0c\u5f69\u8272\u4e5f\u968f\u4e4b\u6d88\u5931\u3002\u5982\u679c\u60f3\u8ba9\u4e0d\u540c\u7c7b\u578b\u7684\u6570\u636e\u5177\u6709\u4e0d\u540c\u7684\u9ad8\u4eae\u6548\u679c\uff0c\u53ef\u4ee5\u6539\u7528\u5982\u4e0b\u914d\u7f6e\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># \u4fee\u6539\u5728\u63a7\u5236\u53f0\u8f93\u51fa\u7684\u65e5\u5fd7\u683c\u5f0f\nlogging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %clr(%5p) [%thread] %clr(%logger){cyan} : %msg%n\n# \u4fee\u6539\u8f93\u51fa\u5230\u6587\u4ef6\u7684\u65e5\u5fd7\u683c\u5f0f\nlogging.pattern.file=%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%thread] %logger : %msg%n<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-1024x167.png\" alt=\"\" class=\"wp-image-5906\" width=\"691\" height=\"112\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-1024x167.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-300x49.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-768x125.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-1536x251.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-830x135.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-230x38.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-350x57.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103-480x78.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-103.png 1544w\" sizes=\"(max-width: 691px) 100vw, 691px\" \/><\/figure><\/div>\n\n\n\n<p>\uff083\uff09\u5982\u679c\u89c9\u5f97\u7c7b\u540d\u592a\u957f\uff08<strong>%logger<\/strong>\uff09\uff0c\u6211\u4eec\u8fd8\u53ef\u4ee5\u5c06\u5176\u8bbe\u7f6e\u4e2a\u957f\u5ea6\u9650\u5236\u3002\u6bd4\u5982\u4e0b\u9762\u9650\u5236\u957f\u5ea6\u4e3a <strong>45 <\/strong>\u4e2a\u5b57\u7b26\uff0c\u8d85\u8fc7\u5f97\u8bdd\u5305\u540d\u90e8\u5206\u4f1a\u53d8\u6210\u7f29\u5199\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># \u4fee\u6539\u5728\u63a7\u5236\u53f0\u8f93\u51fa\u7684\u65e5\u5fd7\u683c\u5f0f\nlogging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %clr(%5p) [%thread] %clr(%logger{45}){cyan} : %msg%n\n# \u4fee\u6539\u8f93\u51fa\u5230\u6587\u4ef6\u7684\u65e5\u5fd7\u683c\u5f0f\nlogging.pattern.file=%d{yyyy-MM-dd HH:mm:ss.SSS} %-5level [%thread] %logger : %msg%n<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-1024x170.png\" alt=\"\" class=\"wp-image-5904\" width=\"668\" height=\"111\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-1024x170.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-300x50.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-768x127.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-830x137.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-230x38.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-350x58.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102-480x79.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2022\/05\/\u56fe\u7247-102.png 1522w\" sizes=\"(max-width: 668px) 100vw, 668px\" \/><\/figure><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1\uff0c\u57fa\u672c\u4ecb\u7ecd \uff081\uff09\u5e02\u9762\u4e0a\u5e38\u89c1\u7684\u65e5\u5fd7\u6846\u67b6\u6709\u5f88\u591a\u3002\u901a\u5e38\u60c5\u51b5\u4e0b\uff0c\u65e5\u5fd7\u662f\u7531\u4e00\u4e2a\u62bd\u8c61\u5c42+\u5b9e\u73b0\u5c42\u7684\u7ec4\u5408\u6765\u642d\u5efa\u7684\uff0c\u800c\u7528\u6237\u901a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27],"tags":[],"_links":{"self":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/5896"}],"collection":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5896"}],"version-history":[{"count":2,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/5896\/revisions"}],"predecessor-version":[{"id":5907,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/5896\/revisions\/5907"}],"wp:attachment":[{"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5896"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5896"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5896"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}