mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
12 lines
216 B
Text
12 lines
216 B
Text
#
|
|
# @TEST-EXEC: zeek -b %INPUT
|
|
# @TEST-EXEC: btest-diff print_statements.log
|
|
|
|
redef Log::print_to_log = T;
|
|
redef Log::print_log_path = "print_statements";
|
|
|
|
event zeek_init()
|
|
{
|
|
print "hello world ,";
|
|
print 2,T;
|
|
}
|