fix: update logging types and clean up ProxyRequestCache usage

This commit is contained in:
Tunglies
2025-09-02 22:19:22 +08:00
parent 926c095409
commit b51797e238
5 changed files with 42 additions and 22 deletions

View File

@@ -18,6 +18,7 @@ pub enum Type {
Network,
ProxyMode,
Ipc,
// Cache,
}
impl fmt::Display for Type {
@@ -39,6 +40,7 @@ impl fmt::Display for Type {
Type::Network => write!(f, "[Network]"),
Type::ProxyMode => write!(f, "[ProxMode]"),
Type::Ipc => write!(f, "[IPC]"),
// Type::Cache => write!(f, "[Cache]"),
}
}
}