diff --git a/man/NetworkManager.conf.xml.in b/man/NetworkManager.conf.xml.in
index 16a1ad996a..38c3b310d1 100644
--- a/man/NetworkManager.conf.xml.in
+++ b/man/NetworkManager.conf.xml.in
@@ -414,7 +414,7 @@ unmanaged-devices=mac:00:22:68:1c:59:b1;mac:00:1E:65:30:D1:C4;interface-name:eth
WIFI_SCAN, IP4, IP6, AUTOIP4, DNS, VPN, SHARING, SUPPLICANT,
AGENTS, SETTINGS, SUSPEND, CORE, DEVICE, OLPC, WIMAX,
INFINIBAND, FIREWALL, ADSL, BOND, VLAN, BRIDGE, DBUS_PROPS,
- TEAM, CONCHECK, DCB, DISPATCH.
+ TEAM, CONCHECK, DCB, DISPATCH, AUDIT.
In addition, these special domains can be used: NONE,
ALL, DEFAULT, DHCP, IP.
You can specify per-domain log level overrides by
@@ -459,6 +459,7 @@ unmanaged-devices=mac:00:22:68:1c:59:b1;mac:00:1E:65:30:D1:C4;interface-name:eth
CONCHECK : Connectivity check
DCB : Data Center Bridging (DCB) operations
DISPATCH : Dispatcher scripts
+ AUDIT : Audit records
NONE : when given by itself logging is disabled
ALL : all log domains
diff --git a/src/nm-logging.c b/src/nm-logging.c
index 90598775fa..d7b85c1d4a 100644
--- a/src/nm-logging.c
+++ b/src/nm-logging.c
@@ -120,6 +120,7 @@ static const LogDesc domain_descs[] = {
{ LOGD_CONCHECK, "CONCHECK" },
{ LOGD_DCB, "DCB" },
{ LOGD_DISPATCH, "DISPATCH" },
+ { LOGD_AUDIT, "AUDIT" },
{ 0, NULL }
};
diff --git a/src/nm-logging.h b/src/nm-logging.h
index 668125927b..6af672844d 100644
--- a/src/nm-logging.h
+++ b/src/nm-logging.h
@@ -67,6 +67,7 @@ typedef enum { /*< skip >*/
LOGD_CONCHECK = (1LL << 31),
LOGD_DCB = (1LL << 32), /* Data Center Bridging */
LOGD_DISPATCH = (1LL << 33),
+ LOGD_AUDIT = (1LL << 34),
__LOGD_MAX,
LOGD_ALL = ((__LOGD_MAX - 1LL) << 1) - 1LL,