File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -227,15 +227,15 @@ object StackTrace:
227
227
case (msg, frame) =>
228
228
val obj = frame.method.className.s.endsWith(" #" )
229
229
val drop = if obj then 1 else 0
230
- val file = (" " * (fileWidth - frame.file.s.length))+ frame.file
230
+ val file = (" \u00a0 " * (fileWidth - frame.file.s.length))+ frame.file
231
231
val dot = if obj then " ." .tt else " #" .tt
232
232
val className = frame.method.className.s.dropRight(drop)
233
- val classPad = (" " * (classWidth - className.length)).tt
233
+ val classPad = (" \u00a0 " * (classWidth - className.length)).tt
234
234
val method = frame.method.method
235
- val methodPad = (" " * (methodWidth - method.s.length)).tt
235
+ val methodPad = (" \u00a0 " * (methodWidth - method.s.length)).tt
236
236
val line = frame.line.let(_.toString.tt).or(" ?" .tt)
237
237
238
- s " $msg\n\n at $classPad$className$dot$method$methodPad $file: $line" .tt
238
+ s " $msg\n\n\u00a0\u00a0 at \u00a0 $classPad$className$dot$method$methodPad\u00a0 $file: $line" .tt
239
239
240
240
Message :
241
241
stack.cause.lay(root): cause =>
You can’t perform that action at this time.
0 commit comments