Delete logs after rotating

I encountered a situation where I needed logs to be written at runtime, but after rotation, the log files should not be saved and archived, but deleted.

In the log policy, I found variables for enabling, disabling, and configuring rotation, or disabling logs completely, but I didn’t find anything related to disabling log saving.
What’s the best way to do this?

I`ve tried to change variables in local.zeek

@load base/frameworks/logging
redef Log::default_rotation_postprocessor_cmd = "delete-log";

But after systemctl restart zeek a directory with the date was created and logs were saved and archived there
p.s Zeek is working in standalone mode

CGroup: /system.slice/zeek.service
            ├─202734 bash /opt/zeek/share/zeekctl/scripts/run-zeek -1 -i ens18 -U .status -p zeekctl -p zeekctl-live -p standalone -p local -p zeek local.zeek zeekctl zeekctl/standalone zeekctl/auto
            └─202740 /opt/zeek/bin/zeek -i ens18 -U .status -p zeekctl -p zeekctl-live -p standalone -p local -p zeek local.zeek zeekctl zeekctl/standalone zeekctl/auto

Maybe I need to change some options in zeekctl.cfg?
p.s I’ve already tried to add options LogRotationInterval = 3600, LogExpireInterval = 1 hr in zeekctl.cfg, but after restart YYYY-MM-DD directory still appeared and collect archieved logs…