You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/logging.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -609,7 +609,7 @@ logging:
609
609
corpname: mycorp
610
610
----
611
611
612
-
TIP: For more advanced customizations, you can write your own class that implements the javadoc:org.springframework.boot.logging.structured.StructureLoggingJsonMembersCustomizer[] interface and declare it using the configprop:logging.structured.json.customizer[] property.
612
+
TIP: For more advanced customizations, you can write your own class that implements the javadoc:org.springframework.boot.logging.structured.StructuredLoggingJsonMembersCustomizer[] interface and declare it using the configprop:logging.structured.json.customizer[] property.
613
613
You can also declare implementations by listing them in a `META-INF/spring.factories` file.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/log4j2/ElasticCommonSchemaStructuredLogFormatter.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/log4j2/GraylogExtendedLogFormatStructuredLogFormatter.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/log4j2/LogstashStructuredLogFormatter.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/log4j2/StructuredLogLayout.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/ElasticCommonSchemaStructuredLogFormatter.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/GraylogExtendedLogFormatStructuredLogFormatter.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/LogstashStructuredLogFormatter.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/StructuredLogEncoder.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/structured/JsonWriterStructuredLogFormatter.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -42,18 +42,18 @@ public abstract class JsonWriterStructuredLogFormatter<E> implements StructuredL
42
42
* @param customizer an optional customizer to apply
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/structured/StructuredLogFormatter.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@
28
28
* Implementing classes can declare the following parameter types in the constructor:
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/structured/StructuredLogFormatterFactory.java
+9-9
Original file line number
Diff line number
Diff line change
@@ -82,8 +82,8 @@ public StructuredLogFormatterFactory(Class<E> logEventType, Environment environm
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/structured/StructuredLoggingJsonMembersCustomizer.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/structured/StructuredLoggingJsonProperties.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,13 @@
28
28
* @param include the paths that should be included. An empty set includes all names
29
29
* @param exclude the paths that should be excluded. An empty set excludes nothing
30
30
* @param rename a map of path to replacement names
31
-
* @param add a map of additional elements {@link StructureLoggingJsonMembersCustomizer}
31
+
* @param add a map of additional elements {@link StructuredLoggingJsonMembersCustomizer}
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/structured/StructuredLoggingJsonPropertiesJsonMembersCustomizer.java
+6-5
Original file line number
Diff line number
Diff line change
@@ -24,12 +24,12 @@
24
24
importorg.springframework.util.CollectionUtils;
25
25
26
26
/**
27
-
* {@link StructureLoggingJsonMembersCustomizer} to apply
27
+
* {@link StructuredLoggingJsonMembersCustomizer} to apply
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/logging/log4j2/AbstractStructuredLoggingTests.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/logging/logback/AbstractStructuredLoggingTests.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/logging/structured/StructuredLogFormatterFactoryTests.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/logging/structured/StructuredLoggingJsonPropertiesJsonMembersCustomizerTests.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot/src/test/java/org/springframework/boot/logging/structured/StructuredLoggingJsonPropertiesTests.java
Copy file name to clipboardexpand all lines: spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-structured-logging/src/main/java/smoketest/structuredlogging/SampleJsonMembersCustomizer.java
0 commit comments