We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8486c8 commit a2a9f4eCopy full SHA for a2a9f4e
1 file changed
crates/lens-client/src/lib.rs
@@ -120,9 +120,6 @@ pub fn start_lens_server_with(
120
return Err(Error::ServerExeNotFound(server_path.to_owned()));
121
}
122
123
- for var in vars_os() {
124
- dbg!(var);
125
- }
126
let mut child = Command::new(wine);
127
if is_proton {
128
child
@@ -139,7 +136,6 @@ pub fn start_lens_server_with(
139
136
.stdin(Stdio::piped())
140
137
.stdout(Stdio::piped())
141
138
.stderr(Stdio::inherit());
142
- dbg!(&child);
143
let child = child.spawn()?;
144
145
Ok(ServerClient::open(child, config)?)
0 commit comments