Merge remote-tracking branch 'origin/topic/awelzel/stevesmoot-reporter-error-updates'

* origin/topic/awelzel/stevesmoot-reporter-error-updates:
  Update reporter.bif to describe special case of errors in init
This commit is contained in:
Tim Wojtulewicz 2024-06-04 11:36:13 -07:00
commit 07d845b558
3 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,10 @@
7.0.0-dev.347 | 2024-06-04 11:36:13 -0700
* Update reporter.bif to describe special case of errors in init (Smoot)
Originally proposed in zeek/zeek-docs#257, but reverted via
9f9ebde62380a3012a1471d9ff1c1c91c7aa69da.
7.0.0-dev.345 | 2024-06-04 10:36:46 -0700
* script optimization baseline tweaks due to recent minor changes (Vern Paxson, Corelight)

View file

@ -1 +1 @@
7.0.0-dev.345
7.0.0-dev.347

View file

@ -43,8 +43,9 @@ function Reporter::warning%(msg: string%): bool
return zeek::val_mgr->True();
%}
## Generates a non-fatal error indicative of a definite problem that should
## be addressed. Program execution does not terminate.
## Generates a usually non-fatal error indicative of a definite problem that
## should be addressed. Program execution does not terminate unless the error
## is reported during initialization (e.g., :zeek:see:`zeek_init`).
##
## msg: The error message to report.
##