Eclipse Console - what are the rules that make stack traces clickable?

前端 未结 4 1526
失恋的感觉
失恋的感觉 2020-12-29 10:58

I log quite a bit of stuff, and have noticed that Eclipse Console makes Java stacktraces clickable. The exception is highlighted (goes to the \"Create Breakpoint\" dialog b

4条回答
  •  隐瞒了意图╮
    2020-12-29 11:38

    fullyQualifiedClassName.methodName(fileName:lineNumber)
    

    Without fullyQualifiedClassName, Eclipse may choose the wrong file. methodName is required for matching but not used -- it can be anything.

提交回复
热议问题