We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d5adb0 commit e3cbee7Copy full SHA for e3cbee7
sdk/logs/src/main/java/io/opentelemetry/sdk/logs/LogRecordProcessor.java
@@ -37,6 +37,9 @@ static LogRecordProcessor composite(LogRecordProcessor... processors) {
37
/**
38
* Returns a {@link LogRecordProcessor} which simply delegates to all processing to the {@code
39
* processors} in order.
40
+ *
41
+ * <p>Note that if there are {@link BatchLogRecordProcessor} including, they are enforced to end
42
+ * of the processor pipeline.
43
*/
44
static LogRecordProcessor composite(Iterable<LogRecordProcessor> processors) {
45
List<LogRecordProcessor> processorList = new ArrayList<>();
0 commit comments