alternative to open_log_file ?

I just noticed (rather starting to notice :slight_smile: open_log_file was depricated in
2.6 and is removed in 3.0.0

What would be suggested alternative for this ?

Aashish

Either the logging framework or just use open() directly:
open_log_file() didn't do anything different than open() except for
adding the file extension to the filename (by default ".log", else
ZEEK_LOG_SUFFIX env. var.).

- Jon