Remove duplicated log (#4133)

This commit is contained in:
Juraj Sadel 2025-09-17 16:04:11 +02:00 committed by GitHub
parent 42297811be
commit aadbf3c076
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,7 +198,6 @@ fn fmt_packages(workspace: &Path, args: FmtPackagesArgs) -> Result<()> {
packages.sort();
for package in packages {
log::info!("Formatting package: {}", package);
xtask::format_package(workspace, package, args.check)?;
}