Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

error stack trace render 개선 요청 #270

Open
codingstore opened this issue Oct 5, 2021 · 1 comment
Open

error stack trace render 개선 요청 #270

codingstore opened this issue Oct 5, 2021 · 1 comment

Comments

@codingstore
Copy link

codingstore commented Oct 5, 2021

안녕하세요
스카우터 페이퍼 2.6.3버전을 사용중입니다

현재 버전에서 stackTrace를 출력하는경우 span태그에서 \n가 인식이 되지 않아서 가독성이 매우 떨어집니다.
image

아래는 제가 임시로 FrameProfile에서 아무것도 걸리지 않는 경우 pre로 감싸서 출력을 하도록 수정을 해 본 예시입니다.
image

return <div key={i}>
  <span className="label">{meta.name}</span>
  <span className={"data " + (meta.name.toLowerCase() === "error" ? "error" : "")}>
    {meta.type === "datetime" && d3.timeFormat(this.fullTimeFormat)(new Date(Number(this.props.profile[meta.key])))}
    {meta.type === "ms" && `${numeral(this.props.profile[meta.key]).format(this.props.config.numberFormat)} ms`}
    {meta.type === "bytes" && `${numeral(this.props.profile[meta.key]).format(this.props.config.numberFormat)} b`}
    {meta.type === "number" && numeral(this.props.profile[meta.key]).format(this.props.config.numberFormat)}
    {meta.type === "boolean" && this.boolTostr(this.props.profile[meta.key]) }
    {
      (
        meta.type !== "datetime" && 
        meta.type !== "ms" && 
        meta.type !== "bytes" && 
        meta.type !== "number" && 
        meta.type !== "boolean"
      ) && 
      //스택트레이스는 <pre></pre> 로 감싸서 공백과 \t \n 를 보존
      <pre>
        {
          this.props.profile[meta.key]
        }
      </pre>
    }
  </span>
</div>

stackTrace를 정상적으로 출력하도록 개선이 가능할지 문의드립니다

감사합니다

@kranian
Copy link
Member

kranian commented Dec 28, 2021

답변이 늦었네요 stackTrace를 정상적으로 출력하도록 개선 한지 체크 해보도록 하겠습니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants