Fix argument order when printing prettier debug info (#8826)

Release Notes:


- N/A
This commit is contained in:
Thorsten Ball 2024-03-04 15:37:50 +01:00 committed by GitHub
parent c91969d828
commit 6121c286b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -335,9 +335,9 @@ impl Prettier {
.collect();
log::debug!(
"Formatting file {:?} with prettier, plugins :{:?}, options: {:?}",
buffer.file().map(|f| f.full_path(cx)),
plugins,
prettier_options,
buffer.file().map(|f| f.full_path(cx))
);
anyhow::Ok(FormatParams {