diff --git a/scripts/base/frameworks/logging/writers/ascii.bro b/scripts/base/frameworks/logging/writers/ascii.bro index 50ce450bce..5f59229f7f 100644 --- a/scripts/base/frameworks/logging/writers/ascii.bro +++ b/scripts/base/frameworks/logging/writers/ascii.bro @@ -26,20 +26,20 @@ export { ## This option is also available as a per-filter ``$config`` option. const use_json = F &redef; - ## Format of timestamps when writing out JSON. By default, the JSON formatter will - ## use double values for timestamps which represent the number of seconds from the - ## UNIX epoch. + ## Format of timestamps when writing out JSON. By default, the JSON + ## formatter will use double values for timestamps which represent the + ## number of seconds from the UNIX epoch. const json_timestamps: JSON::TimestampFormat = JSON::TS_EPOCH &redef; ## If true, include lines with log meta information such as column names ## with types, the values of ASCII logging options that are in use, and ## the time when the file was opened and closed (the latter at the end). - ## + ## ## If writing in JSON format, this is implicitly disabled. const include_meta = T &redef; ## Prefix for lines with meta information. - ## + ## ## This option is also available as a per-filter ``$config`` option. const meta_prefix = "#" &redef; diff --git a/scripts/base/frameworks/signatures/main.bro b/scripts/base/frameworks/signatures/main.bro index f293237acc..5b233d1db1 100644 --- a/scripts/base/frameworks/signatures/main.bro +++ b/scripts/base/frameworks/signatures/main.bro @@ -71,7 +71,7 @@ export { ## to be logged has occurred. ts: time &log; ## A unique identifier of the connection which triggered the - ## signature match event + ## signature match event. uid: string &log &optional; ## The host which triggered the signature match event. src_addr: addr &log &optional;