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
It seems odd that these are inconsistent, especially since trace and debug are both five letter words:
use log::{debug, trace};pubfnmain(){trace!("get some longer length in here yes yes {} {}",
"hello",
"world");debug!("get some longer length in here yes yes {} {}",
"hello", "world");}
Notice the newline present in the trace arguments, but not in the debug arguments. Other functions seem to follow the same format as the former; perhaps this is something specific with debug? Not sure why that would be 🤷
It seems odd that these are inconsistent, especially since trace and debug are both five letter words:
Notice the newline present in the
trace
arguments, but not in thedebug
arguments. Other functions seem to follow the same format as the former; perhaps this is something specific withdebug
? Not sure why that would be 🤷Versions tested:
rustfmt 1.6.0-stable (a28077b 2023-12-04)
rustfmt 1.7.0-nightly (3d0e6be 2023-12-21)
The text was updated successfully, but these errors were encountered: