How to Enable Audit logs for ScyllaDB for creating new functions

ScyllaDB version: 6.0.2
OS: Ubuntu

What do you mean “for creating new functions”?
You can read more about Auditing here.

i want to log, for example:
CREATE FUNCTION test.add_numbers(a int, b int)
RETURNS NULL ON NULL INPUT
RETURNS int
LANGUAGE lua AS ‘return a + b;’;