fix: Resolve build errors by importing log::debug and removing unused imports

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-08 17:46:28 -03:00
parent 762fdfd876
commit 12665032a3
3 changed files with 3 additions and 4 deletions

View File

@@ -3,12 +3,12 @@ use crate::compression_engine::CompressionType;
use crate::meta_plugin::MetaPluginType;
use clap::Command;
use clap::error::ErrorKind;
use log::{debug, log_enabled, Level};
use log::debug;
use prettytable::format::TableFormat;
use regex::Regex;
use std::collections::HashMap;
use std::env;
use std::io::{stdout, IsTerminal};
use std::io::IsTerminal;
use std::str::FromStr;
use strum::IntoEnumIterator;
use termsize;