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: opentelemetry-sdk/src/logs/log_emitter.rs
+14-11
Original file line number
Diff line number
Diff line change
@@ -238,11 +238,19 @@ impl Logger {
238
238
Logger{ scope, provider }
239
239
}
240
240
241
+
#[deprecated(
242
+
since = "0.27.1",
243
+
note = "This method was intended for appender developers, but has no defined use-case in typical workflows. It is deprecated and will be removed in the next major release."
244
+
)]
241
245
/// LoggerProvider associated with this logger.
242
246
pubfnprovider(&self) -> &LoggerProvider{
243
247
&self.provider
244
248
}
245
249
250
+
#[deprecated(
251
+
since = "0.27.1",
252
+
note = "This method was intended for appender developers, but has no defined use-case in typical workflows. It is deprecated and will be removed in the next major release."
0 commit comments