1
Fork 0
mirror of https://github.com/RGBCube/superfreq synced 2025-07-27 17:07:44 +00:00

cli: pad output to prevent misaligned text

This commit is contained in:
NotAShelf 2025-05-17 11:48:09 +03:00
parent 7a708c60d7
commit 1b31dd9e1e
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF
2 changed files with 10 additions and 8 deletions

View file

@ -117,7 +117,9 @@ pub fn determine_and_apply_settings(
debug!("Managing turbo in auto mode based on system conditions");
manage_auto_turbo(report, selected_profile_config)?;
} else {
debug!("Auto turbo management disabled by configuration, using system default behavior");
debug!(
"Auto turbo management disabled by configuration, using system default behavior"
);
try_apply_feature("Turbo boost", "system default (Auto)", || {
cpu::set_turbo(turbo_setting)
})?;

View file

@ -148,7 +148,7 @@ fn main() -> Result<(), AppError> {
.unwrap_or("N/A")
);
println!(
"Available Governors: {}",
"Available Governors: {}", // 21 length baseline
report.cpu_global.available_governors.join(", ")
);
println!(