no-secret-in-log
A direct credential-like reference is passed to a recognized logging call.
Why
Raw credentials in logs can spread to durable sinks and readers outside the request boundary.
Fix
Omit the credential or log only approved non-sensitive metadata through a centralized sanitizer.
Examples
logger.info("request", token=token)logger.info( "request authenticated", auth_method="bearer", credential_present=token is not None)