We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff37748 commit d0d6c1eCopy full SHA for d0d6c1e
1 file changed
src/typescript/mod.rs
@@ -208,12 +208,6 @@ impl TypeScriptTranspiler {
208
script.get_runnable_code()
209
);
210
211
- println!(
212
- "TypeScriptPreProcessor:process file={} result = {}",
213
- script.get_path(),
214
- script.get_runnable_code()
215
- );
216
-
217
Ok(())
218
}
219
@@ -336,7 +330,7 @@ pub(crate) fn unmap_stack_trace(stack_trace: &str) -> String {
336
330
337
331
pub fn fix_stack_trace(stack_trace: &str, maps: &HashMap<String, String>) -> String {
338
332
log::trace!("fix_stack_trace:\n{stack_trace}");
339
- println!("fix_stack_trace:\n{stack_trace}");
333
+
340
334
match parse_stack_trace(stack_trace) {
341
335
Ok(mut parsed_stack) => {
342
for stack_trace_entry in parsed_stack.iter_mut() {
0 commit comments