Skip to content

Commit 0b2754e

Browse files
committed
Remove print and hardcoded StackTrace
1 parent fe545da commit 0b2754e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/client/connection.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ fn run_writer_thread(
8383
) {
8484
thread::spawn(move || {
8585
while let Ok(msg) = outbound_rx.recv() {
86-
println!("RESPONSE MSG: {:?}", msg);
8786
match msg {
8887
Sendable::Response(response) => {
8988
server_writer.respond(response).expect("Failed to send response")

src/debugger/handlers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ impl CairoDebugger {
149149
name: "test".to_string(),
150150
// Replace it with the actual source path.
151151
// Otherwise, the debugger will crush after returning this response.
152-
source: Some(Source { name: None, path: Some("/Users/ddoktorski/Workplace/experiments/forge_init/debugger_testing/src/lib.cairo".to_string()), ..Default::default() }),
153-
line: 23,
152+
source: Some(Source { name: None, path: None, ..Default::default() }),
153+
line: 1,
154154
column: 1,
155155
..Default::default()
156156
}],

0 commit comments

Comments
 (0)