Skip to content

Commit d0d6c1e

Browse files
cleanup
1 parent ff37748 commit d0d6c1e

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/typescript/mod.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,6 @@ impl TypeScriptTranspiler {
208208
script.get_runnable_code()
209209
);
210210

211-
println!(
212-
"TypeScriptPreProcessor:process file={} result = {}",
213-
script.get_path(),
214-
script.get_runnable_code()
215-
);
216-
217211
Ok(())
218212
}
219213
}
@@ -336,7 +330,7 @@ pub(crate) fn unmap_stack_trace(stack_trace: &str) -> String {
336330

337331
pub fn fix_stack_trace(stack_trace: &str, maps: &HashMap<String, String>) -> String {
338332
log::trace!("fix_stack_trace:\n{stack_trace}");
339-
println!("fix_stack_trace:\n{stack_trace}");
333+
340334
match parse_stack_trace(stack_trace) {
341335
Ok(mut parsed_stack) => {
342336
for stack_trace_entry in parsed_stack.iter_mut() {

0 commit comments

Comments
 (0)