Source code

Revision control

Copy as Markdown

Other Tools

# PR_NewLogModule
The `PRLogModuleInfo` structure controls logging from within your
application. To log your program's activity, create a
`PRLogModuleInfo` structure using
.
## Syntax
```
#include <prlog.h>
typedef struct PRLogModuleInfo {
const char *name;
PRLogModuleLevel level;
struct PRLogModuleInfo *next;
} PRLogModuleInfo;
```