Skip to content

Commit

Permalink
feat: 상수명 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
EunjiShin committed Jul 3, 2024
1 parent a08a43e commit e69c6df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@Configuration
public class P6spySqlFormatter implements MessageFormattingStrategy {

private static String JPA_PACKAGE = "org.depromeet.spot";
private static String ROOT_PACKAGE = "org.depromeet.spot";
private static String P6SPY_PACKAGE = "org.depromeet.spot.jpa.common.P6spySqlFormatter";

@Override
Expand Down Expand Up @@ -61,7 +61,7 @@ private String filterStack() {

for (StackTraceElement element : stackTraces) {
String trace = element.toString();
if (trace.startsWith(JPA_PACKAGE) && !trace.contains(P6SPY_PACKAGE)) {
if (trace.startsWith(ROOT_PACKAGE) && !trace.contains(P6SPY_PACKAGE)) {
sb.append("\n\t\t").append(order++).append(".").append(trace);
}
}
Expand Down

0 comments on commit e69c6df

Please sign in to comment.