Bug 1918529 - fix some subpixel misalignment issues with gfx.webrender.svg-filter...
[gecko.git] / xpcom / docs / logging.rst
blob9b419ccdb54a36d216678e3026cf438c0b054cc1
1 Gecko Logging
2 =============
4 A minimal logging framework is provided for use in core Gecko code,
5 written in C++ and enabled for all builds and is thread-safe.
6 It can be accessed via C++, JavaScript or Rust.
8 This page covers enabling logging for particular logging module, configuring
9 the logging output, and how to use the logging facilities in native code.
11 Enabling and configuring logging
12 ++++++++++++++++++++++++++++++++
14 Caveat: sandboxing when logging to a file
15 -----------------------------------------
17 Sandboxed content processes (on all OSes) cannot write to files on disk, so it
18 is recommended to log to the terminal, possibly by redirecting the output to a
19 file.
21 If the sandbox has been disabled and/or the logging statement are coming
22 from the parent process, ``MOZ_LOG_FILE`` will work as expected. Otherwise,
23 logging to the terminal works as expected on macOS and Linux on desktop.
25 On Windows, you can still see child process messages by using DOS (not the
26 ``MOZ_LOG_FILE`` variable defined below) to redirect output to a file.  For
27 example: ``MOZ_LOG=CameraChild:5 mach run >& my_log_file.txt`` will include
28 debug messages from the camera's child actor that lives in a (sandboxed) content
29 process.
31 Another way to do this and have output in the terminal when developing is by
32 redirecting ``stderr`` to ``stdout`` and then ``stdout`` to another process,
33 for example like so:
37     MOZ_LOG=cubeb:4 ./mach run 2>&1 | tee
40 Logging to the Firefox Profiler
41 -------------------------------
43 When a log statement is logged on a thread and the `Firefox Profiler
44 <https://profiler.firefox.com>`_ is profiling that thread, the log statements is
45 recorded as a profiler marker.
47 This allows getting logs alongside profiler markers and lots of performance
48 and contextual information, in a way that doesn't require disabling the
49 sandbox, and works across all processes.
51 The profile can be downloaded and shared e.g. via Bugzilla or email, or
52 uploaded, and the logging statements will be visible either in the marker chart
53 or the marker table.
55 While it is possible to manually configure logging module and start the profiler
56 with the right set of threads to profile, ``about:logging`` makes this task a lot
57 simpler and error-proof.
60 The ``MOZ_LOG`` syntax
61 ----------------------
63 Logging is configured using a special but simple syntax: which module should be
64 enabled, at which level, and what logging options should be enabled or disabled.
66 The syntax is a list of terms, separated by commas. There are two types of
67 terms:
69 - A log module and its level, separated by a colon (``:``), such as
70   ``example_module:5`` to enable the module ``example_module`` at logging level
71   ``5`` (verbose). This `searchfox query
72   <https://searchfox.org/mozilla-central/search?q=LazyLogModule+.*%5C%28%22&path=&case=true&regexp=true>`_
73   returns the complete list of modules available.
74 - A special string in the following table, to configure the logging behaviour.
75   Some configuration switch take an integer parameter, in which case it's
76   separated from the string by a colon (``:``). Most switches only apply in a
77   specific output context, noted in the **Context** column.
79 +----------------------+---------+-------------------------------------------------------------------------------------------+
80 | Special module name  | Context | Action                                                                                    |
81 +======================+=========+===========================================================================================+
82 | append               | File    | Append new logs to existing log file.                                                     |
83 +----------------------+---------+-------------------------------------------------------------------------------------------+
84 | sync                 | File    | Print each log synchronously, this is useful to check behavior in real time or get logs   |
85 |                      |         | immediately before crash.                                                                 |
86 +----------------------+---------+-------------------------------------------------------------------------------------------+
87 | raw                  | File    | Print exactly what has been specified in the format string, without the                   |
88 |                      |         | process/thread/timestamp, etc. prefix.                                                    |
89 +----------------------+---------+-------------------------------------------------------------------------------------------+
90 | timestamp            | File    | Insert timestamp at start of each log line.                                               |
91 +----------------------+---------+-------------------------------------------------------------------------------------------+
92 | rotate:**N**         | File    | | This limits the produced log files' size.  Only most recent **N megabytes** of log data |
93 |                      |         | | is saved.  We rotate four log files with .0, .1, .2, .3 extensions.  Note: this option  |
94 |                      |         | | disables 'append' and forces 'timestamp'.                                               |
95 +----------------------+---------+-------------------------------------------------------------------------------------------+
96 | maxsize:**N**        | File    | Limit the log to **N** MB. Only work in append mode.                                      |
97 +----------------------+---------+-------------------------------------------------------------------------------------------+
98 | prependheader        | File    | Prepend a simple header while distinguishing logging. Useful in append mode.              |
99 +----------------------+---------+-------------------------------------------------------------------------------------------+
100 | profilerstacks       | Profiler| | When profiling with the Firefox Profiler and log modules are enabled, capture the call  |
101 |                      |         | | stack for each log statement.                                                           |
102 +----------------------+---------+-------------------------------------------------------------------------------------------+
104 This syntax is used for most methods of enabling logging.
107 Enabling Logging
108 ----------------
110 Enabling logging can be done in a variety of ways:
112 - via environment variables
113 - via command line switches
114 - using ``about:config`` preferences
115 - using ``about:logging``
117 The first two allow logging from the start of the application and are also
118 useful in case of a crash (when ``sync`` output is requested, this can also be
119 done with ``about:config`` as well to a certain extent). The last two
120 allow enabling and disabling logging at runtime and don't require using the
121 command-line.
123 By default all logging output is disabled.
125 Enabling logging using ``about:logging``
126 ''''''''''''''''''''''''''''''''''''''''
128 ``about:logging`` allows enabling logging by entering a ``MOZ_LOG`` string in the
129 text input, and validating.
131 Options allow logging to a file or using the Firefox Profiler, that can be
132 started and stopped right from the page.
134 Logging presets for common scenarios are available in a drop-down. They can be
135 associated with a profiler preset.
137 It is possible, via URL parameters, to select a particular logging
138 configuration, or to override certain parameters in a preset. This is useful to
139 ask a user to gather logs efficiently without having to fiddle with prefs and/or
140 environment variable.
142 URL parameters are described in the following table:
144 +---------------------+---------------------------------------------------------------------------------------------+
145 | Parameter           | Description                                                                                 |
146 +=====================+=============================================================================================+
147 | ``preset``          |  a `logging preset <https://searchfox.org/mozilla-central/search?q=gLoggingPresets>`_       |
148 +---------------------+---------------------------------------------------------------------------------------------+
149 | ``logging-preset``  |  alias for ``preset``                                                                       |
150 +---------------------+---------------------------------------------------------------------------------------------+
151 | ``modules``         |  a string in ``MOZ_LOG`` syntax                                                             |
152 +---------------------+---------------------------------------------------------------------------------------------+
153 | ``module``          |  alias for ``modules``                                                                      |
154 +---------------------+---------------------------------------------------------------------------------------------+
155 | ``threads``         |  a list of threads to profile, overrides what a profiler preset would have picked           |
156 +---------------------+---------------------------------------------------------------------------------------------+
157 | ``thread``          |  alias for ``threads``                                                                      |
158 +---------------------+---------------------------------------------------------------------------------------------+
159 | ``output``          |  either ``profiler`` or ``file``                                                            |
160 +---------------------+---------------------------------------------------------------------------------------------+
161 | ``output-type``     |  alias for ``output``                                                                       |
162 +---------------------+---------------------------------------------------------------------------------------------+
163 | ``profiler-preset`` |  a `profiler preset <https://searchfox.org/mozilla-central/search?q=%40type+{Presets}>`_    |
164 +---------------------+---------------------------------------------------------------------------------------------+
166 If a preset is selected, then ``threads`` or ``modules`` can be used to override the
167 profiled threads or logging modules enabled, but keeping other aspects of the
168 preset. If no preset is selected, then a generic profiling preset is used,
169 ``firefox-platform``. For example:
173   about:logging?output=profiler&preset=media-playback&modules=cubeb:4,AudioSinkWrapper:4:AudioSink:4
175 will profile the threads in the ``Media`` profiler preset, but will only log
176 specific log modules (instead of the `long list
177 <https://searchfox.org/mozilla-central/search?q="media-playback"&path=toolkit%2Fcontent%2FaboutLogging.js>`_
178 in the ``media-playback`` preset). In addition, it disallows logging to a file.
180 Enabling logging using environment variables
181 ''''''''''''''''''''''''''''''''''''''''''''
183 On UNIX, setting and environment variable can be done in a variety of ways
187   set MOZ_LOG="example_logger:3"
188   export MOZ_LOG="example_logger:3"
189   MOZ_LOG="example_logger:3" ./mach run
191 In the Windows Command Prompt (``cmd.exe``), don't use quotes:
195   set MOZ_LOG=example_logger:3
197 If you want this on GeckoView example, use the following adb command to launch process:
201   adb shell am start -n org.mozilla.geckoview_example/.GeckoViewActivity --es env0 "MOZ_LOG=example_logger:3"
203 There are special module names to change logging behavior. You can specify one or more special module names without logging level.
205 For example, if you want to specify ``sync``, ``timestamp`` and ``rotate``:
209   set MOZ_LOG="example_logger:3,timestamp,sync,rotate:10"
211 Enabling logging usually outputs the logging statements to the terminal. To
212 have the logs written to a file instead (one file per process), the environment
213 variable ``MOZ_LOG_FILE`` can be used. Logs will be written at this path
214 (either relative or absolute), suffixed by a process type and its PID.
215 ``MOZ_LOG`` files are text files and have the extension ``.moz_log``.
217 For example, setting:
221   set MOZ_LOG_FILE="firefox-logs"
223 can create a number of files like so:
227   firefox-log-main.96353.moz_log
228   firefox-log-child.96354.moz_log
230 respectively for a parent process of PID 96353 and a child process of PID
231 96354.
233 Enabling logging using command-line flags
234 '''''''''''''''''''''''''''''''''''''''''
236 The ``MOZ_LOG`` syntax can be used with the command line switch on the same
237 name, and specifying a file with ``MOZ_LOG_FILE`` works in the same way:
241   ./mach run -MOZ_LOG=timestamp,rotate:200,example_module:5 -MOZ_LOG_FILE=%TEMP%\firefox-logs
243 will enable verbose (``5``) logging for the module ``example_module``, with
244 timestamp prepended to each line, rotate the logs with 4 files of each 50MB
245 (for a total of 200MB), and write the output to the temporary directory on
246 Windows, with name starting with ``firefox-logs``.
248 Enabling logging using preferences
249 ''''''''''''''''''''''''''''''''''
251 To adjust the logging after Firefox has started, you can set prefs under the
252 ``logging.`` prefix. For example, setting ``logging.foo`` to ``3`` will set the log
253 module ``foo`` to start logging at level 3.
255 The MOZ_LOG syntax can be used directly as well, by setting the preference
256 ``logging.config.modules``. All modules can be used but only the special string
257 `profilerstacks` is supported.
259 A number of special prefs can be set as well, described in the table below:
261 +-------------------------------------+------------+-------------------------------+--------------------------------------------------------+
262 |         Preference name             | Preference |   Preference value            |                  Description                           |
263 +=====================================+============+===============================+========================================================+
264 | ``logging.config.clear_on_startup`` |    bool    | \--                           | Whether to clear all prefs under ``logging.``          |
265 +-------------------------------------+------------+-------------------------------+--------------------------------------------------------+
266 | ``logging.config.LOG_FILE``         |   string   | A path (relative or absolute) | The path to which the log files will be written.       |
267 +-------------------------------------+------------+-------------------------------+--------------------------------------------------------+
268 | ``logging.config.add_timestamp``    |   bool     | \--                           | Whether to prefix all lines by a timestamp.            |
269 +-------------------------------------+------------+-------------------------------+--------------------------------------------------------+
270 | ``logging.config.sync``             |   bool     | \--                           | Whether to flush the stream after each log statements. |
271 +-------------------------------------+------------+-------------------------------+--------------------------------------------------------+
272 | ``logging.config.profilerstacks``   |   bool     | \--                           | When logging to the Firefox Profiler, whether to       |
273 |                                     |            |                               | include the call stack in each logging statement.      |
274 +-------------------------------------+------------+-------------------------------+--------------------------------------------------------+
276 Enabling logging in Rust code
277 -----------------------------
279 We're gradually adding more Rust code to Gecko, and Rust crates typically use a
280 different approach to logging. Many Rust libraries use the `log
281 <https://docs.rs/log>`_ crate to log messages, which works together with
282 `env_logger <https://docs.rs/env_logger>`_ at the application level to control
283 what's actually printed via `RUST_LOG`.
285 You can set an overall logging level, though it could be quite verbose:
289   set RUST_LOG="debug"
291 You can also target individual modules by path:
295   set RUST_LOG="style::style_resolver=debug"
297 .. note::
298   For Linux/MacOS users, you need to use `export` rather than `set`.
300 .. note::
301   Sometimes it can be useful to only log child processes and ignore the parent
302    process. In Firefox 57 and later, you can use `RUST_LOG_CHILD` instead of
303    `RUST_LOG` to specify log settings that will only apply to child processes.
305 The `log` crate lists the available `log levels <https://docs.rs/log/0.3.8/log/enum.LogLevel.html>`_:
307 +-----------+---------------------------------------------------------------------------------------------------------+
308 | Log Level | Purpose                                                                                                 |
309 +===========+=========================================================================================================+
310 | error     | Designates very serious errors.                                                                         |
311 +-----------+---------------------------------------------------------------------------------------------------------+
312 | warn      | Designates hazardous situations.                                                                        |
313 +-----------+---------------------------------------------------------------------------------------------------------+
314 | info      | Designates useful information.                                                                          |
315 +-----------+---------------------------------------------------------------------------------------------------------+
316 | debug     | Designates lower priority information.                                                                  |
317 +-----------+---------------------------------------------------------------------------------------------------------+
318 | trace     | Designates very low priority, often extremely verbose, information.                                     |
319 +-----------+---------------------------------------------------------------------------------------------------------+
321 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.
323 Check the `env_logger <https://docs.rs/env_logger>`_ docs for more details on logging options.
325 Additionally, a mapping from `RUST_LOG` is available. When using the `MOZ_LOG`
326 syntax, it is possible to enable logging in rust crate using a similar syntax:
330   MOZ_LOG=rust_crate_name::*:4
332 will enable `debug` logging for all log statements in the crate
333 ``rust_crate_name``.
335 `*` can be replaced by a series of modules if more specificity is needed:
339   MOZ_LOG=rust_crate_name::module::submodule:4
341 will enable `debug` logging for all log statements in the sub-module
342 ``submodule`` of the module ``module`` of the crate ``rust_crate_name``.
345 A table mapping Rust log levels to `MOZ_LOG` log level is available below:
347 +----------------+---------------+-----------------+
348 | Rust log level | MOZ_LOG level | Numerical value |
349 +================+===============+=================+
350 |      off       |     Disabled  |        0        |
351 +----------------+---------------+-----------------+
352 |      error     |     Error     |        1        |
353 +----------------+---------------+-----------------+
354 |      warn      |     Warning   |        2        |
355 +----------------+---------------+-----------------+
356 |      info      |     Info      |        3        |
357 +----------------+---------------+-----------------+
358 |      debug     |     Debug     |        4        |
359 +----------------+---------------+-----------------+
360 |      trace     |     Verbose   |        5        |
361 +----------------+---------------+-----------------+
364 Enabling logging on Android, interleaved with system logs (``logcat``)
365 ----------------------------------------------------------------------
367 While logging to the Firefox Profiler works it's sometimes useful to have
368 system logs (``adb logcat``) interleaved with application logging. With a
369 device (or emulator) that ``adb devices`` sees, it's possible to set
370 environment variables like so, for e.g. ``GeckoView_example``:
373 .. code-block:: sh
375   adb shell am start -n org.mozilla.geckoview_example/.GeckoViewActivity --es env0 MOZ_LOG=MediaDemuxer:4
378 It is then possible to see the logging statements like so, to display all logs,
379 including ``MOZ_LOG``:
381 .. code-block:: sh
383   adb logcat
385 and to only see ``MOZ_LOG`` like so:
387 .. code-block:: sh
389   adb logcat Gecko:V '*:S'
391 This expression means: print log module ``Gecko`` from log level ``Verbose``
392 (lowest level, this means that all levels are printed), and filter out (``S``
393 for silence) all other logging (``*``, be careful to quote it or escape it
394 appropriately, it so that it's not expanded by the shell).
396 While interactive with e.g. ``GeckoView`` code, it can be useful to specify
397 more logging tags like so:
399 .. code-block:: sh
401   adb logcat GeckoViewActivity:V Gecko:V '*:S'
404 Enabling logging on Android, using the Firefox Profiler
405 -------------------------------------------------------
407 Set the logging modules using `about:config` (this requires a Nightly build)
408 using the instructions outlined above, and start the profile using an
409 appropriate profiling preset to profile the correct threads using the instructions
410 written in Firefox Profiler documentation's `dedicated page
411 <https://profiler.firefox.com/docs/#/./guide-profiling-android-directly-on-device>`_.
413 `Bug 1803607 <https://bugzilla.mozilla.org/show_bug.cgi?id=1803607>`_ tracks
414 improving the logging experience on mobile.
416 Working with ``MOZ_LOG`` in the code
417 ++++++++++++++++++++++++++++++++++++
419 Declaring a Log Module
420 ----------------------
422 ``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.
424 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.
426 .. code-block:: cpp
428   #include "mozilla/Logging.h"
430   static mozilla::LazyLogModule sFooLog("foo");
433 Logging interface
434 -----------------
436 A basic interface is provided in the form of 2 macros and an enum class.
438 +----------------------------------------+----------------------------------------------------------------------------+
439 | MOZ_LOG(module, level, message)        | Outputs the given message if the module has the given log level enabled:   |
440 |                                        |                                                                            |
441 |                                        | *   module: The log module to use.                                         |
442 |                                        | *   level: The log level of the message.                                   |
443 |                                        | *   message: A printf-style message to output. Must be enclosed in         |
444 |                                        |     parentheses.                                                           |
445 +----------------------------------------+----------------------------------------------------------------------------+
446 | MOZ_LOG_FMT(module, level, message)    | Outputs the given message if the module has the given log level enabled:   |
447 |                                        |                                                                            |
448 |                                        | *   module: The log module to use.                                         |
449 |                                        | *   level: The log level of the message.                                   |
450 |                                        | *   message: An {fmt} style message to output.                             |
451 +----------------------------------------+----------------------------------------------------------------------------+
452 | MOZ_LOG_TEST(module, level)            | Checks if the module has the given level enabled:                          |
453 |                                        |                                                                            |
454 |                                        | *    module: The log module to use.                                        |
455 |                                        | *    level: The output level of the message.                               |
456 +----------------------------------------+----------------------------------------------------------------------------+
459 +-----------+---------------+-----------------------------------------------------------------------------------------+
460 | Log Level | Numeric Value | Purpose                                                                                 |
461 +===========+===============+=========================================================================================+
462 | Disabled  |      0        | Indicates logging is disabled. This should not be used directly in code.                |
463 +-----------+---------------+-----------------------------------------------------------------------------------------+
464 | Error     |      1        | An error occurred, generally something you would consider asserting in a debug build.   |
465 +-----------+---------------+-----------------------------------------------------------------------------------------+
466 | Warning   |      2        | A warning often indicates an unexpected state.                                          |
467 +-----------+---------------+-----------------------------------------------------------------------------------------+
468 | Info      |      3        | An informational message, often indicates the current program state.                    |
469 +-----------+---------------+-----------------------------------------------------------------------------------------+
470 | Debug     |      4        | A debug message, useful for debugging but too verbose to be turned on normally.         |
471 +-----------+---------------+-----------------------------------------------------------------------------------------+
472 | Verbose   |      5        | A message that will be printed a lot, useful for debugging program flow and will        |
473 |           |               | probably impact performance.                                                            |
474 +-----------+---------------+-----------------------------------------------------------------------------------------+
476 Example Usage
477 -------------
479 .. code-block:: cpp
481   #include "mozilla/Logging.h"
483   using mozilla::LogLevel;
485   static mozilla::LazyLogModule sLogger("example_logger");
487   static void DoStuff()
488   {
489     MOZ_LOG(sLogger, LogLevel::Info, ("Doing stuff."));
491     int i = 0;
492     int start = Time::NowMS();
493     MOZ_LOG(sLogger, LogLevel::Debug, ("Starting loop."));
494     while (i++ &lt; 10) {
495       MOZ_LOG(sLogger, LogLevel::Verbose, ("i = %d", i));
496     }
498     // Only calculate the elapsed time if the Warning level is enabled.
499     if (MOZ_LOG_TEST(sLogger, LogLevel::Warning)) {
500       int elapsed = Time::NowMS() - start;
501       if (elapsed &gt; 1000) {
502         MOZ_LOG(sLogger, LogLevel::Warning, ("Loop took %dms!", elapsed));
503       }
504     }
506     if (i != 10) {
507       MOZ_LOG(sLogger, LogLevel::Error, ("i should be 10!"));
508     }
509   }
512 Logging from JavaScript via the ``console`` API
513 +++++++++++++++++++++++++++++++++++++++++++++++
515 Any call made to a ``console`` API from JavaScript will be logged through the
516 ``MOZ_LOG`` pipeline.
518 - Web Pages as well as privileged context using ``console`` API expose to
519   JavaScript will automatically generate MOZ_LOG messages under the ``console``
520   module name.
522 - Privileged context can use a specific module name by instantiating their own
523   console object:
524   ``const logger = console.createInstance({ prefix: "module-name" })``,
525   ``prefix`` value will be used as the MOZ_LOG module name.
527 More info about ``console.createInstance`` is available on the
528 `JavaScript Logging page </toolkit/javascript-logging.html>`_
530 When using the ``console`` API, the console methods calls will be visible
531 in the Developer Tools, as well as through MOZ_LOG stdout, file or profiler
532 outputs.
534 Note that because of `Bug 1923985
535 <https://bugzilla.mozilla.org/show_bug.cgi?id=1923985>`_,
536 there is some discrepancies between console log level and MOZ_LOG one.
537 So that ``console.shouldLog()`` only consider the level set by
538 ``createInstance``'s ``maxLogLevel{Pref}`` arguments.
541 .. code-block:: javascript
543   // The following two logs can be visible through MOZ_LOG by using:
544   // MOZ_LOG=console:5
546   // Both call will be logged through "console" module name.
547   // Any console API call from privileged or content page will be logged.
548   console.log("Doing stuff.");
550   console.error("Error happened");
552   // The following two other logs can be visible through MOZ_LOG by using:
553   // MOZ_LOG=example_logger:5
555   // From a privileged context, you can instantiate your own console object
556   // with a specific module name, here "example_logger":
557   const logger = console.createInstance({ prefix: "example_logger" });
559   logger.warn("something failed");
561   logger.debug("some debug info");
564 Console API levels
565 ------------------
567 +----------------------+---------------+
568 |  Console API Method  | MOZ_LOG Level |
569 +======================+===============+
570 |   console.error()    |   1 (Error)   |
571 |   console.assert()   |               |
572 +----------------------+---------------+
573 |   console.warn()     |   2 (Warning) |
574 +----------------------+---------------+
575 | All other methods,   |   3 (Info)    |
576 | but console.debug()  |               |
577 +----------------------+---------------+
578 |   console.debug()    |   4 (Debug    |
579 +----------------------+---------------+