mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
14 lines
264 B
Text
14 lines
264 B
Text
|
|
@load ./main
|
|
|
|
module GLOBAL;
|
|
|
|
## This is the entry point in the global namespace for the notice framework.
|
|
function NOTICE(n: Notice::Info)
|
|
{
|
|
# Suppress this notice if necessary.
|
|
if ( Notice::is_being_suppressed(n) )
|
|
return;
|
|
|
|
Notice::internal_NOTICE(n);
|
|
}
|