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 d9ccec6 commit 6e393b3Copy full SHA for 6e393b3
src/bin/rustfmt.rs
@@ -212,7 +212,7 @@ fn execute() -> i32 {
212
path = path_tmp;
213
};
214
if let Some(path) = path.as_ref() {
215
- msg!("Using rustfmt config file {}", path.display());
+ println!("Using rustfmt config file {}", path.display());
216
}
217
for file in files {
218
// Check the file directory if the config-path could not be read or not provided
@@ -222,9 +222,9 @@ fn execute() -> i32 {
222
for {}",
223
file.display()));
224
if let Some(path) = path_tmp.as_ref() {
225
- msg!("Using rustfmt config file {} for {}",
226
- path.display(),
227
- file.display());
+ println!("Using rustfmt config file {} for {}",
+ path.display(),
+ file.display());
228
229
config = config_tmp;
230
0 commit comments