You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS: Windows 10 Pro 64 bits 21H1
VSCode version: 1.63.2
CodeLLDB version: 1.6.10
Compiler: rustc 1.58.0 (02072b482 2022-01-11)
Debuggee: stable-x86_64-pc-windows-msvc
A simple rust program like
fnmain(){println!("hello");}
works properly. Breakpoints even work if set on the println! line, for example.
However, if I add env_logger 0.9 to Cargo.toml and then just add a call to env_logger::init,
fnmain(){
env_logger::init();println!("hello");}
debugging fails with the following message: Error: Os { code: 10061, kind: ConnectionRefused, message: "Aucune connexion n’a pu être établie car l’ordinateur cible l’a expressément refusée." } (Loose translation: "no connection could be established because the computer expressly refused it")
I'm not a 100% sure if this is a codelldb or env_logger bug but it feels to me that it's the former.
OS: Windows 10 Pro 64 bits 21H1
VSCode version: 1.63.2
CodeLLDB version: 1.6.10
Compiler: rustc 1.58.0 (02072b482 2022-01-11)
Debuggee: stable-x86_64-pc-windows-msvc
A simple rust program like
works properly. Breakpoints even work if set on the println! line, for example.
However, if I add env_logger 0.9 to Cargo.toml and then just add a call to
env_logger::init
,debugging fails with the following message:
Error: Os { code: 10061, kind: ConnectionRefused, message: "Aucune connexion n’a pu être établie car l’ordinateur cible l’a expressément refusée." }
(Loose translation: "no connection could be established because the computer expressly refused it")I'm not a 100% sure if this is a codelldb or env_logger bug but it feels to me that it's the former.
Cargo.toml:
Verbose log
The text was updated successfully, but these errors were encountered: