bro init () method

Hi all,

I have written simple below script in testaddedsig.bro file

CODE:

module Test;

event bro_init() &priority=5
{
print “testaddedsig : bro init method”;

}

And also this file declared in local.bro ,like this.
@load testaddedsig.

My doubt is , where this print stmt is printed.
If is not printing ,then what is the problem.how to reslove it.

with regards
ravi

Hello Ravi,

It will print it out in your terminal, once you call the script, unless you store the result in a text file.

Best Regards