From 166a12734c873bf4984eddb14274da6fbd36bd3c Mon Sep 17 00:00:00 2001 From: Shawn <18649508+NOBLES5E@users.noreply.github.com> Date: Thu, 11 Jul 2024 14:38:49 -0400 Subject: [PATCH] Update CHANGELOG.md (#1927) --- opentelemetry-sdk/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opentelemetry-sdk/CHANGELOG.md b/opentelemetry-sdk/CHANGELOG.md index 61d99a629b..88e303a9ac 100644 --- a/opentelemetry-sdk/CHANGELOG.md +++ b/opentelemetry-sdk/CHANGELOG.md @@ -17,13 +17,13 @@ `RwLock` instead of `Mutex` to reduce contention - **Breaking** [1726](https://github.com/open-telemetry/opentelemetry-rust/pull/1726) - Update `LogProcessor::emit() method to take mutable reference to LogData. This is breaking + Update `LogProcessor::emit()` method to take mutable reference to LogData. This is breaking change for LogProcessor developers. If the processor needs to invoke the exporter asynchronously, it should clone the data to ensure it can be safely processed without lifetime issues. Any changes made to the log data before cloning in this method will be reflected in the next log processor in the chain, as well as to the exporter. - **Breaking** [1726](https://github.com/open-telemetry/opentelemetry-rust/pull/1726) - Update `LogExporter::export() method to accept a batch of log data, which can be either a + Update `LogExporter::export()` method to accept a batch of log data, which can be either a reference or owned`LogData`. If the exporter needs to process the log data asynchronously, it should clone the log data to ensure it can be safely processed without lifetime issues.