Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PRLogModuleLevel

The enumerated type PRLogModuleLevel defines levels of logging available to application programs.

Syntax

#include <prlog.h>

typedef enum PRLogModuleLevel {
   PR_LOG_NONE = 0,
   PR_LOG_ALWAYS = 1,
   PR_LOG_ERROR = 2,
   PR_LOG_WARNING = 3,
   PR_LOG_DEBUG = 4,

   PR_LOG_NOTICE = PR_LOG_DEBUG,
   PR_LOG_WARN = PR_LOG_WARNING,
   PR_LOG_MIN = PR_LOG_DEBUG,
   PR_LOG_MAX = PR_LOG_DEBUG
} PRLogModuleLevel;

Document Tags and Contributors

 Contributors to this page: teoli, fmarier
 Last updated by: teoli,