Skip to content

Commit a2a9f4e

Browse files
committed
fix: remove debug logs
1 parent a8486c8 commit a2a9f4e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

crates/lens-client/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@ pub fn start_lens_server_with(
120120
return Err(Error::ServerExeNotFound(server_path.to_owned()));
121121
}
122122

123-
for var in vars_os() {
124-
dbg!(var);
125-
}
126123
let mut child = Command::new(wine);
127124
if is_proton {
128125
child
@@ -139,7 +136,6 @@ pub fn start_lens_server_with(
139136
.stdin(Stdio::piped())
140137
.stdout(Stdio::piped())
141138
.stderr(Stdio::inherit());
142-
dbg!(&child);
143139
let child = child.spawn()?;
144140

145141
Ok(ServerClient::open(child, config)?)

0 commit comments

Comments
 (0)