Skip to content

Commit

Permalink
Remove backtrace
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Dec 2, 2024
1 parent 592b8a3 commit 82d40f4
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions merde_core/src/deserialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,12 +473,6 @@ impl<'s, T: Deserialize<'s>> Deserialize<'s> for Vec<T> {
loop {
match de.next().await? {
Event::ArrayEnd => {
#[cfg(debug_assertions)]
{
println!("Stack trace:");
let backtrace = std::backtrace::Backtrace::capture();
println!("{}", backtrace);
}
break;
}
ev => {
Expand Down

0 comments on commit 82d40f4

Please sign in to comment.