From 2d14d996f6aeefad7bebf51d5033d4116d06d1e3 Mon Sep 17 00:00:00 2001 From: dongheonlee Date: Wed, 8 Mar 2023 23:45:34 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20logging=20=EB=9D=BC=EC=9D=B4?= =?UTF-8?q?=EB=B8=8C=EB=9F=AC=EB=A6=AC=EB=A5=BC=20logback=EC=97=90?= =?UTF-8?q?=EC=84=9C=20log4j2=EB=A1=9C=20=EB=B3=80=EA=B2=BD=20-=20spring?= =?UTF-8?q?=20boot=20=EA=B8=B0=EB=B3=B8=20=EC=84=A4=EC=A0=95=EC=9D=B8=20lo?= =?UTF-8?q?gback=20=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=A0=9C=EC=99=B8=20-=20?= =?UTF-8?q?log4j2=20=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 854bd5e..d5c7e93 100644 --- a/build.gradle +++ b/build.gradle @@ -12,6 +12,9 @@ configurations { compileOnly { extendsFrom annotationProcessor } + all { + exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' + } } repositories { @@ -26,7 +29,6 @@ dependencies { developmentOnly 'org.springframework.boot:spring-boot-devtools' -// runtimeOnly 'com.h2database:h2' runtimeOnly 'org.mariadb.jdbc:mariadb-java-client' compileOnly 'org.projectlombok:lombok' @@ -35,6 +37,8 @@ dependencies { testCompileOnly 'org.projectlombok:lombok' testAnnotationProcessor 'org.projectlombok:lombok' + implementation 'org.springframework.boot:spring-boot-starter-log4j2' + testImplementation 'org.springframework.boot:spring-boot-starter-test' // testImplementation 'org.springframework.security:spring-security-test' }