A minimal C++ logging framework is provided for use in core Gecko code. It is enabled for all builds, thread-safe, and the preferred alternative to NSPR logging.
Some other mostly-useless information on logging can be found on the NSPR logging page.
LazyLogModule defers the creation the backing LogModule in a thread-safe manner and is the preferred method to declare a log module. Multiple LazyLogModules with the same name can be declared, all will share the same backing LogModule. This makes it much simpler to share a log module across multiple translation units. LazyLogLodule provides a conversion operator to LogModule* and is suitable for passing into the logging macros detailed below.
Note: Log module names can only contain specific characters. The first character must be a lowercase or uppercase ASCII char, underscore, dash, or dot. Subsequent characters may be any of those, or an ASCII digit.
#include "mozilla/Logging.h" static mozilla::LazyLogModule sFooLog("foo");
A basic interface is provided in the form of 2 macros and an enum class.
MOZ_LOG(module, level, message) |
Outputs the given message if the module has the given log level enabled.
|
MOZ_LOG_TEST(module, level) |
Checks if the module has the given level enabled.
|
Log Level | Numeric Value | Purpose |
---|---|---|
Disabled | 0 | Indicates logging is disabled. This should not be used directly in code. |
Error | 1 | An error occurred, generally something you would consider asserting in a debug build. |
Warning | 2 | A warning often indicates an unexpected state. |
Info | 3 | An informational message, often indicates the current program state. |
Debug | 4 | A debug message, useful for debugging but too verbose to be turned on normally. |
Verbose | 5 | A message that will be printed a lot, useful for debugging program flow and will probably impact performance. |
#include "mozilla/Logging.h" using mozilla::LogLevel; static mozilla::LazyLogModule sLogger("example_logger"); static void DoStuff() { MOZ_LOG(sLogger, LogLevel::Info, ("Doing stuff.")); int i = 0; int start = Time::NowMS(); MOZ_LOG(sLogger, LogLevel::Debug, ("Starting loop.")); while (i++ < 10) { MOZ_LOG(sLogger, LogLevel::Verbose, ("i = %d", i)); } // Only calculate the elapsed time if the Warning level is enabled. if (MOZ_LOG_TEST(sLogger, LogLevel::Warning)) { int elapsed = Time::NowMS() - start; if (elapsed > 1000) { MOZ_LOG(sLogger, LogLevel::Warning, ("Loop took %dms!", elapsed)); } } if (i != 10) { MOZ_LOG(sLogger, LogLevel::Error, ("i should be 10!")); } }
The log level for a module is controlled by setting an environment variable before launching the application. It can also be adjusted by setting prefs.
By default all logging output is disabled.
set MOZ_LOG="example_logger:3"
In the Windows Command Prompt (cmd.exe
), don't use quotes:
set MOZ_LOG=example_logger:3
If you want this on GeckoView example, use the following adb command to launch process:
adb shell am start -n org.mozilla.geckoview_example/.GeckoViewActivity --es env0 "MOZ_LOG=example_logger:3"
If you want to use multiple loggers, separate them by commas as in the following example.
MOZ_LOG="SpellChecker:5,InlineSpellChecker:5"
There are special module names to change logging behavior. You can specify one or more special module names without logging level.
Special module name | |
---|---|
append | Append new logs to existing log file. |
sync | Print each log synchronously, this is useful to check behavior in real time or get logs immediately before crash. |
raw | Print exactly what has been specified in the format string, without the process/thread/timestamp, etc. prefix. |
timestamp | Insert timestamp at start of each log line. |
rotate:N | This limits the produced log files' size. Only most recent N megabytes of log data is saved. We rotate four log files with .0, .1, .2, .3 extensions. Note: this option disables 'append' and forces 'timestamp'. |
For example, if you want to specify "sync", "timestamp" and "rotate":
set MOZ_LOG="example_logger:3,timestamp,sync,rotate:10"
To adjust the logging after Firefox has started, you can set prefs under the logging.
prefix. For example, setting logging.foo
to 3
will set the log module foo
to start logging at level 3. The special boolean prefs logging.config.sync
and logging.config.add_timestamp
can be used to control the sync and timestamp properties described above.
Logging output can be redirected to a file by passing its path via an environment variable.
By default logging output goes to stderr
.
set MOZ_LOG_FILE="log.txt"
The rotate
and append
options described above only apply when logging to a file.
The special pref logging.config.LOG_FILE
can be set at runtime to change the log file being output to.
When a content process is in sandbox, it cannot write to stderr or any file. You may need to set preference security.sandbox.content.level
to 0 to see the log.
We're gradually adding more Rust code to Gecko, and Rust crates typically use a different approach to logging. Many Rust libraries use the log
crate to log messages, which works together with env_logger
at the application level to control what's actually printed via RUST_LOG.
You can set an overall logging level, though it could be quite verbose:
set RUST_LOG="debug"
You can also target individual modules by path:
set RUST_LOG="style::style_resolver=debug"
For Linux/MacOS users, you need to use export
rather than set
.
If you're only interested in the content process you can use RUST_LOG_CHILD
rather than RUST_LOG
.
The log
crate lists the available log levels:
Log Level | Purpose |
---|---|
error | Designates very serious errors. |
warn | Designates hazardous situations. |
info | Designates useful information. |
debug | Designates lower priority information. |
trace | Designates very low priority, often extremely verbose, information. |
It is common for debug and trace to be disabled at compile time in release builds, so you may need a debug build if you want logs from those levels.
Check the env_logger
docs for more details on logging options.
Sometimes it can be useful to only log child processes and ignore the parent process. In Firefox 57 and later, you can use RUST_LOG_CHILD
to specify log settings that will only apply to child processes.