mirror of
https://github.com/Noratrieb/cluelessh.git
synced 2026-01-15 08:55:06 +01:00
fix next
This commit is contained in:
parent
86c73b4a97
commit
0bfb1818a6
4 changed files with 130 additions and 62 deletions
|
|
@ -13,7 +13,9 @@ use tracing_subscriber::EnvFilter;
|
|||
#[tokio::main]
|
||||
async fn main() -> eyre::Result<()> {
|
||||
tracing_subscriber::fmt()
|
||||
.with_env_filter(EnvFilter::from_default_env())
|
||||
.with_env_filter(
|
||||
EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new("info")),
|
||||
)
|
||||
.init();
|
||||
|
||||
let addr = "0.0.0.0:2222".parse::<SocketAddr>().unwrap();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue