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
- If Firefox is already running, exit out of it.
- 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".
- 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.
- Reproduce whatever problem it is that you're having.
- 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.
- Quit out of Firefox if it's running.
- Open a new shell. The commands listed here assume a bash-compatible shell.
- Copy and paste the commands in Figure 3 into the shell. Make sure to hit enter after each line.
- Reproduce the problem you're debugging.
- 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.
- 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).
- Run the Terminal application, which is located in the Utilities subfolder in your startup disk's Applications folder.
- 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.
- Reproduce whatever problem you're trying to debug.
- 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.
- Install the adb software for your platform if you haven't already done so.
- Connect the phone to your computer using a USB cable.
- Open a root shell on the phone by using the command
adb shell
. - Enter the commands in Figure 5 into the phone's shell. This will enable logging, then restart the b2g service.
- 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:
- Replace
NSPR_LOG_MODULES=nsHttp:5
withNSPR_LOG_MODULES=nsHttp:3
in the commands above. - 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 usensFTPProtocol
instead ofnsFtp
). - 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.