Bug 1885489 - Part 9: Add SnapshotIterator::readObject(). r=iain
[gecko.git] / docs / nspr / reference / prlogmoduleinfo.rst
blobea616e435a36cbe8b4095e669c1df762b658650d
1 PR_NewLogModule
2 ===============
5 The ``PRLogModuleInfo`` structure controls logging from within your
6 application. To log your program's activity, create a
7 ``PRLogModuleInfo`` structure using
8 `:ref:`PR_NewLogModule` <http://www-archive.mozilla.org/projects/nspr/reference/html/prlog.html#25372>`__
12 Syntax
13 ------
17    #include <prlog.h>
19    typedef struct PRLogModuleInfo {
20       const char *name;
21       PRLogModuleLevel level;
22       struct PRLogModuleInfo *next;
23    } PRLogModuleInfo;