Skip to main content

Debug Logging from a Policy

Beta Feature

This article is subject to change as the feature develops and we make improvements.

You can use print statements in OPA policy to help you debug while writing policies.

Print statements are:

  • Honored while testing from Control Center UI

  • Ignored in production environments

Print statements must be within a block; it is not a top-level statement.

Example:

package authz

allowedAuthenticators := []
message := "message"

allowed {
print("I am a test ", message)
true
}

The CC console for print statements is shown here: