HTTP logging

Sometimes, while debugging your Web app (or client-side code using Necko), it can be useful to log HTTP traffic. This article provides useful information on how to do this using the tools built into Firefox. The section Logging HTTP activity provides basic instructions that can be used by non-technical users.

More advanced users may want to refer to Advanced techniques. This section provides instructions that focus on logging specific portions of HTTP activity, such as request/response headers, socket level logging, or host resolver log output. It also covers how to disable logging of information you don't need, to reduce the "noise" level in your log files.

Note: If you're a developer asking a non-technical user to follow instructions on this page to provide you with debugging information, please be sure to guide them to the right part of the page, and to make it clear when and where to perform any of the more advanced steps if necessary.

The See also section provides links to some additional tools and utilities you may find helpful if the built-in logging features aren't good enough. Also, keep in mind that the Web Console offers the ability to peek at HTTP transactions.

Logging HTTP activity

The instructions in this section provide basic information on how to log HTTP activity on each of the major platforms supported by Firefox. Don't let the scary-looking command line stuff frighten you off; it's not hard at all!

Windows

Figure 1—Windows commands to begin HTTP logging (32-bit Windows).
cd c:\
set NSPR_LOG_MODULES=timestamp,nsHttp:5,nsSocketTransport:5,nsHostResolver:5
set NSPR_LOG_FILE=%TEMP%\log.txt
cd "Program Files\Mozilla Firefox"
C:\Program Files\Mozilla Firefox\ .\firefox.exe
Figure 2—Windows commands to begin HTTP logging (64-bit Windows).
cd c:\
set NSPR_LOG_MODULES=timestamp,nsHttp:5,nsSocketTransport:5,nsHostResolver:5
set NSPR_LOG_FILE=%TEMP%\log.txt
cd "Program Files\Mozilla Firefox"
C:\Program Files (x86)\Mozilla Firefox\ .\firefox.exe
  1. If Firefox is already running, exit out of it.
  2. Open a command prompt. On Windows XP, you can find the "Run..." command in the Start menu's "All Programs" submenu. On all newer versions of Windows, you can hold down the Windows key and press "R".
  3. Copy and paste each line of text from the box in Figure 1 (for 32-bit Windows) or Figure 2 (for 64-bit Windows) into the "Run" command window. Press the enter key after each one. These instructions assume that you installed Firefox to the default location, and that drive C: is your Windows startup disk. Make the appropriate adjustments if those aren't the case.
  4. Reproduce whatever problem it is that you're having.
  5. Once you've reproduced the problem, exit Firefox and look for the generated log file. This file, called log.txt, should be in your temporary directory. You can type "%TEMP%" directly into the Windows Explorer location bar to get there quickly.

Linux

This section offers information on how to capture HTTP logs for Firefox running on Linux.

Figure 3—Linux commands to begin HTTP logging.
export NSPR_LOG_MODULES=timestamp,nsHttp:5,nsSocketTransport:5,nsHostResolver:5
export NSPR_LOG_FILE=/tmp/log.txt
cd /path/to/firefox
./firefox
  1. Quit out of Firefox if it's running.
  2. Open a new shell. The commands listed here assume a bash-compatible shell.
  3. Copy and paste the commands in Figure 3 into the shell. Make sure to hit enter after each line.
  4. Reproduce the problem you're debugging.
  5. When the problem has been reproduced, exit Firefox and look for the generated log file, which you can find at /tmp/log.txt.

Mac OS X

These instructions show how to log HTTP traffic in Firefox on Mac OS X.

Figure 4—Mac OS X commands to begin HTTP logging.
export NSPR_LOG_MODULES=timestamp,nsHttp:5,nsSocketTransport:5,nsHostResolver:5
export NSPR_LOG_FILE=~/Desktop/log.txt
cd /Applications/Firefox.app/Contents/MacOS
./firefox-bin
  1. Quit Firefox is if it's currently running, by using the Quit option in the File menu. Keep in mind that simply closing all windows does not quit Firefox on Mac OS X (this is standard practice for Mac applications).
  2. Run the Terminal application, which is located in the Utilities subfolder in your startup disk's Applications folder.
  3. Copy and paste each line from Figure 4 into the Terminal window, hitting the return key after each line. The instructions assume that you've installed Firefox directly into your startup disk's Applications folder. If you've put it elsewhere, change the path used on the third line appropriately.
  4. Reproduce whatever problem you're trying to debug.
  5. Quit Firefox and look for the generated log.txt log file on your desktop.

Note: The generated log file uses Unix-style line endings. Older editors may have problems with this, but if you're using an even reasonably modern Mac OS X application to view the log, you won't have any problems.

Firefox OS phones

If you need to log HTTP traffic on a Firefox OS (Boot to Gecko) phone, you can do that too.

Figure 5—Commands to begin logging on a Firefox OS device.
export NSPR_LOG_MODULES=timestamp,nsHttp:5,nsSocketTransport:5,nsHostResolver:5
export NSPR_LOG_FILE=/data/local/tmp/myLogFile
stop b2g
/system/bin/b2g.sh
  1. Install the adb software for your platform if you haven't already done so.
  2. Connect the phone to your computer using a USB cable.
  3. Open a root shell on the phone by using the command adb shell.
  4. Enter the commands in Figure 5 into the phone's shell. This will enable logging, then restart the b2g service.
  5. You may want to use separate log files for each process; this is covered inCreating separate logs for child processes.

Note: If you have any problems, see Customizing the b2g.sh script for more information.

Creating separate logs for child processes

When multiple processes are used, output may be garbled or lost on some operating systems or file systems. You might also be interested only in the log output for specific processes. This section covers how to do that.

Note: You don't need to read this unless you're running Firefox OS, debugging HTTP usage by plug-ins on standard Firefox, or are otherwise using separate child/parent processes in your Mozilla-based software (in Mozilla terminology, if you're using electrolysis, which is also referred to as "e10s").

To get a separate log file for each process, set GECKO_SEPARATE_NSPR_LOGS to 1.

On Mac OS X and Linux:

export GECKO_SEPARATE_NSPR_LOGS=1

On Windows:

set GECKO_SEPARATE_NSPR_LOGS=1

If you set this option, each child process gets logged to its own file; each file has the same name you specify in the NSPR_LOG_FILE option, but with the string ".child-X" appended to it, where X is a different number for each child process.

Note: On Firefox OS, child processes are only allowed to open files in /data/local/tmp, so you must be sure to set NSPR_LOG_FILE to a file in that directory; otherwise, the child processes won't be able to write their log files.

Advanced techniques

You can adjust some of the settings listed above to change what parts of HTTP transactions get logged.

Logging only HTTP request and response headers

There are two ways to do this:

  1. Replace NSPR_LOG_MODULES=nsHttp:5 with NSPR_LOG_MODULES=nsHttp:3 in the commands above.
  2. There's a handy extension for Firefox called Live HTTP Headers that you can use to capture just the HTTP request and response headers. This is a useful tool when you want to peek at HTTP traffic.

Turning off logging of socket-level transactions

If you're not interested in socket-level log information, either because it's not relevant to your bug or because you're debugging something that includes a lot of noise that's hard to parse through, you can do that. Simply remove the text nsSocketTransport:5 from the commands above.

Turning off DNS query logging

You can turn off logging of host resolving (that is, DNS queries) by removing the text nsHostResolver:5 from the commands above.

See also

  • There are similar options available to debug mailnews protocols. See this document for more info about mailnews troubleshooting.
  • On the Windows platform, nightly Firefox builds have FTP logging built-in (don't ask why this is only the case for Windows!). To enable FTP logging, just set NSPR_LOG_MODULES=nsFtp:5 (in older versions of Mozilla, you need to use nsFTPProtocol instead of nsFtp).
  • When Mozilla's built-in logging capabilities aren't good enough, and you need a full-fledged packet tracing tool, two free products are Wireshark and ngrep. They are available for Windows and most flavors of UNIX (including Linux and Mac OS X), are rock solid, and offer enough features to help uncover any Mozilla networking problem.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值