Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Can the Network Monitor preserve its log upon navigation?

  • 2 답장
  • 11 이 문제를 만남
  • 1 보기
  • 최종 답변자: kevinoid

more options

Does the Network Monitoring component of the Firefox Developer Tools have a way to preserve its log upon navigation (which would otherwise be cleared), similar to the Chrome or Safari Developer Tools "Preserve log upon navigation" button?

I've tried checking the "Enable persistent logs" option for the Web Console in settings, but it does not appear to affect the Network Monitoring tab. I also didn't see any bugs filed for it, so I just wanted to make sure I wasn't overlooking something obvious.

Thanks, Kevin

Does the Network Monitoring component of the Firefox Developer Tools have a way to preserve its log upon navigation (which would otherwise be cleared), similar to the Chrome or Safari Developer Tools "Preserve log upon navigation" button? I've tried checking the "Enable persistent logs" option for the Web Console in settings, but it does not appear to affect the Network Monitoring tab. I also didn't see any bugs filed for it, so I just wanted to make sure I wasn't overlooking something obvious. Thanks, Kevin

글쓴이 kevinoid 수정일시

선택된 해결법

Hi kevinoid,

Thank you for contacting Mozilla Support. We are happy to help. Currently if I open the Network tool in Firefox the network traffic [HTTP Headers] are only captured on the active page by default and if I refresh the page then the traffic does not stay. What I have been doing to capture is using Live HTTP Headers, but it depends on the extension if you keep logs.

However you can turn it on within as well Mozilla Developer Network has instructions here: https://developer.mozilla.org/en-US/d.../HTTP_logging

# Quit out of Firefox if it's running.
  1. Open a new shell. The commands listed here assume a bash-compatible shell.
  2. Copy and paste the commands in Figure 3 into the shell. Make sure to hit enter after each line.
  3. Reproduce the problem you're debugging.
  4. When the problem has been reproduced, exit Firefox and look for the generated log file, which you can find at /tmp/log.txt.
  • Figure 3 is in the article

And since you are a linux user you may enjoy the developer toolbar, its pretty neat https://developer.mozilla.org/en-US/d.../GCLI

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (2)

more options

선택된 해결법

Hi kevinoid,

Thank you for contacting Mozilla Support. We are happy to help. Currently if I open the Network tool in Firefox the network traffic [HTTP Headers] are only captured on the active page by default and if I refresh the page then the traffic does not stay. What I have been doing to capture is using Live HTTP Headers, but it depends on the extension if you keep logs.

However you can turn it on within as well Mozilla Developer Network has instructions here: https://developer.mozilla.org/en-US/d.../HTTP_logging

# Quit out of Firefox if it's running.
  1. Open a new shell. The commands listed here assume a bash-compatible shell.
  2. Copy and paste the commands in Figure 3 into the shell. Make sure to hit enter after each line.
  3. Reproduce the problem you're debugging.
  4. When the problem has been reproduced, exit Firefox and look for the generated log file, which you can find at /tmp/log.txt.
  • Figure 3 is in the article

And since you are a linux user you may enjoy the developer toolbar, its pretty neat https://developer.mozilla.org/en-US/d.../GCLI

more options

Thanks guigs2, that's exactly what I wanted to know!