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 862af7f commit b091fa8Copy full SHA for b091fa8
opentelemetry-sdk/CHANGELOG.md
@@ -8,12 +8,12 @@
8
transparent change.
9
[#2338](https://github.com/open-telemetry/opentelemetry-rust/pull/2338)
10
11
-- *Breaking* LogExporter::export() method doesn't take mutable reference to self:
+- *Breaking* The LogExporter::export() method no longer requires a mutable reference to self.:
12
Before:
13
async fn export(&mut self, _batch: LogBatch<'_>) -> LogResult<()>
14
After:
15
async fn export(&self, _batch: LogBatch<'_>) -> LogResult<()>
16
- The custom exporters would need to internally synchronize their mutable states (if any)
+ Custom exporters will need to internally synchronize any mutable state, if applicable.
17
18
## 0.27.1
19
0 commit comments