Quando guardo i log di audit usando questa query
SELECT
feature_name,
created_at,
post_id,
response_tokens
FROM
ai_api_audit_logs
WHERE
post_id IS NOT NULL
AND created_at > :start_date
AND (response_tokens IS NULL OR response_tokens != 1)
ORDER BY
created_at DESC
Non c’è nulla nei risultati per quel post intorno al timestamp di data/ora mostrato nei log.
C’è qualcos’altro che dovrei controllare?