Skip to content

Commit

Permalink
Update debug folded stacks (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahsmartin authored Oct 25, 2023
1 parent 4556341 commit ba99a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ETTrace/ETModels/Sample.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Sample {
public var description: String {
let timeStr = String(format: "%.15f", self.time).replacingOccurrences(of: "0*$", with: "", options: .regularExpression)
let stackStr = stack.map { s in
return "\(s)"
return "\(s.1)"
}.joined(separator: ";")
return "\(stackStr) \(timeStr)"
}
Expand Down

0 comments on commit ba99a6b

Please sign in to comment.