From 87a94c6f1614d39a7233473c761a45c27107630a Mon Sep 17 00:00:00 2001 From: ssrlive <30760636+ssrlive@users.noreply.github.com> Date: Tue, 17 Sep 2024 21:31:28 +0800 Subject: [PATCH] Bump version 0.2.35 --- Cargo.toml | 2 +- src/bin/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 120413a..e06661b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "overtls" -version = "0.2.34" +version = "0.2.35" edition = "2021" license = "MIT" description = "A simple proxy tunnel, minimalist tool for bypassing the GFW." diff --git a/src/bin/main.rs b/src/bin/main.rs index 78813e3..03df48a 100644 --- a/src/bin/main.rs +++ b/src/bin/main.rs @@ -51,7 +51,7 @@ fn main() -> Result<(), BoxError> { dotenvy::dotenv().ok(); - let level = format!("{}={:?}", module_path!(), opt.verbosity); + let level = format!("overtls={:?}", opt.verbosity); env_logger::Builder::from_env(env_logger::Env::default().default_filter_or(level)).init(); let is_server = opt.is_server();