From c96bfc17634741f7bdd8c72674085ef96c71f11b Mon Sep 17 00:00:00 2001 From: Ana Peterlic Date: Sat, 17 Feb 2024 18:13:10 +0100 Subject: [PATCH] Update GreetingServiceWithoutAOP.java --- .../java/com/baeldung/logging/GreetingServiceWithoutAOP.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-aop-2/src/main/java/com/baeldung/logging/GreetingServiceWithoutAOP.java b/spring-aop-2/src/main/java/com/baeldung/logging/GreetingServiceWithoutAOP.java index eee90af669..f13c70f93b 100644 --- a/spring-aop-2/src/main/java/com/baeldung/logging/GreetingServiceWithoutAOP.java +++ b/spring-aop-2/src/main/java/com/baeldung/logging/GreetingServiceWithoutAOP.java @@ -10,9 +10,9 @@ public class GreetingServiceWithoutAOP { private static final Logger logger = LoggerFactory.getLogger(GreetingServiceWithoutAOP.class); public String greet(String name) { - logger.info(">> greet() - {}", name); + logger.debug(">> greet() - {}", name); String result = String.format("Hello %s", name); - logger.info("<< greet() - {}", result); + logger.debug("<< greet() - {}", result); return result; } }