From 9a396c8ed472f8ecd17b3f162b79844088e8c82f Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Thu, 10 Sep 2026 16:08:23 +0200 Subject: [PATCH] Improve Javadoc for LogAccessor --- .../springframework/core/log/LogAccessor.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/log/LogAccessor.java b/spring-core/src/main/java/org/springframework/core/log/LogAccessor.java index 571504560e2..bfda34053dd 100644 --- a/spring-core/src/main/java/org/springframework/core/log/LogAccessor.java +++ b/spring-core/src/main/java/org/springframework/core/log/LogAccessor.java @@ -124,7 +124,7 @@ public class LogAccessor { } /** - * Log an error with fatal log level. + * Log an exception with fatal log level. * @param cause the exception to log * @param message the message to log */ @@ -141,7 +141,7 @@ public class LogAccessor { } /** - * Log an error with error log level. + * Log an exception with error log level. * @param cause the exception to log * @param message the message to log */ @@ -158,7 +158,7 @@ public class LogAccessor { } /** - * Log an error with warn log level. + * Log an exception with warn log level. * @param cause the exception to log * @param message the message to log */ @@ -175,7 +175,7 @@ public class LogAccessor { } /** - * Log an error with info log level. + * Log an exception with info log level. * @param cause the exception to log * @param message the message to log */ @@ -192,7 +192,7 @@ public class LogAccessor { } /** - * Log an error with debug log level. + * Log an exception with debug log level. * @param cause the exception to log * @param message the message to log */ @@ -209,7 +209,7 @@ public class LogAccessor { } /** - * Log an error with trace log level. + * Log an exception with trace log level. * @param cause the exception to log * @param message the message to log */ @@ -231,7 +231,7 @@ public class LogAccessor { } /** - * Log an error with fatal log level. + * Log an exception with fatal log level. * @param cause the exception to log * @param messageSupplier a lazy supplier for the message to log */ @@ -252,7 +252,7 @@ public class LogAccessor { } /** - * Log an error with error log level. + * Log an exception with error log level. * @param cause the exception to log * @param messageSupplier a lazy supplier for the message to log */ @@ -273,7 +273,7 @@ public class LogAccessor { } /** - * Log an error with warn log level. + * Log an exception with warn log level. * @param cause the exception to log * @param messageSupplier a lazy supplier for the message to log */ @@ -294,7 +294,7 @@ public class LogAccessor { } /** - * Log an error with info log level. + * Log an exception with info log level. * @param cause the exception to log * @param messageSupplier a lazy supplier for the message to log */ @@ -315,7 +315,7 @@ public class LogAccessor { } /** - * Log an error with debug log level. + * Log an exception with debug log level. * @param cause the exception to log * @param messageSupplier a lazy supplier for the message to log */ @@ -336,7 +336,7 @@ public class LogAccessor { } /** - * Log an error with trace log level. + * Log an exception with trace log level. * @param cause the exception to log * @param messageSupplier a lazy supplier for the message to log */