File tree 2 files changed +0
-14
lines changed
crates/stackable-operator
2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -4,20 +4,8 @@ All notable changes to this project will be documented in this file.
4
4
5
5
## [ Unreleased]
6
6
7
- ### Changed
8
-
9
- - Deprecate ` stackable_operator::logging::initialize_logging() ` . It's recommended to use ` stackable-telemetry ` instead ([ #950 ] ).
10
-
11
- [ #950 ] : https://github.com/stackabletech/operator-rs/pull/950
12
-
13
7
## [ 0.87.4] - 2025-03-17
14
8
15
- ### Changed
16
-
17
- - Bump ` kube ` to 0.99.0 and ` json-patch ` to 4.0.0 ([ #982 ] ).
18
-
19
- [ #982 ] : https://github.com/stackabletech/operator-rs/pull/982
20
-
21
9
## [ 0.87.3] - 2025-03-14
22
10
23
11
### Added
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ impl Default for TracingTarget {
28
28
///
29
29
/// Log output can be copied to a file by setting `{env}_DIRECTORY` (e.g. `FOOBAR_OPERATOR_DIRECTORY`)
30
30
/// to a directory path. This file will be rotated regularly.
31
- #[ deprecated( note = "Use stackable-telemetry instead, use OTLP instead of Jaeger protocol" ) ]
32
31
pub fn initialize_logging ( env : & str , app_name : & str , tracing_target : TracingTarget ) {
33
32
let filter = match EnvFilter :: try_from_env ( env) {
34
33
Ok ( env_filter) => env_filter,
@@ -95,7 +94,6 @@ mod tests {
95
94
// NOT_SET=debug cargo test default_tracing -- --nocapture
96
95
// to see them all.
97
96
#[ test]
98
- #[ allow( deprecated) ]
99
97
fn default_tracing_level_is_set_to_info ( ) {
100
98
super :: initialize_logging ( "NOT_SET" , "test" , TracingTarget :: None ) ;
101
99
You can’t perform that action at this time.
0 commit comments