Skip to content

Commit 4088685

Browse files
committed
refactor(logging): replace info! macro with tracing::info! in src/model/leg/mod.rs
Aligns logging implementation to use the `tracing` crate instead of the legacy `log` crate. No functional changes introduced.
1 parent 3ba1dcb commit 4088685

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/model/leg/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
//!
5353
//! // Both legs can be handled uniformly via LegAble trait
5454
//! use optionstratlib::model::leg::LegAble;
55-
//! info!("Spot delta: {}", spot_leg.delta()?);
55+
//! tracing::info!("Spot delta: {}", spot_leg.delta()?);
5656
//! # Ok(())
5757
//! # }
5858
//! ```

0 commit comments

Comments
 (0)