Skip to content

Commit

Permalink
Added docs for system_log_level in body common control
Browse files Browse the repository at this point in the history
Ticket: ENT-7594
Changelog: None
(cherry picked from commit 8b52ce4)
  • Loading branch information
nickanderson committed Sep 24, 2021
1 parent cd49575 commit bc21d76
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions reference/components.markdown
Expand Up @@ -554,6 +554,35 @@ components may promise to send data.
}
```

### system_log_level

**Description:** The minimum log level required for log messages to go to the system log (e.g. syslog, Windows Event Log).

**Type:** `string`

**Allowed Input range:** `(critical|error|warning|notice|info)`

**Default value:** `none`

**Example:**

Prevent messages lower than /critical/ on Windows.

```cf3
body common control
{
@if minimum_version(3.18.1)
windows::
system_log_level => "critical";
cfengine::
@endif
}
```

**History:**

* Introduced in 3.19.0, 3.18.1

### tls_ciphers

**Description:** List of ciphers allowed when making **outgoing** connections.
Expand Down

0 comments on commit bc21d76

Please sign in to comment.