Skip to main content
Version: 0.5.0

Logging

Ariadne logs all errors using default ariadne logger. To define custom logger instead, pass its name to logger option:

from ariadne.wsgi import GraphQL
from .schema import schema

app = GraphQL(schema, logger="admin.graphql")

logger option is supported by following functions and objects:

  • ariadne.graphql
  • ariadne.graphql_sync
  • ariadne.subscription
  • ariadne.asgi.GraphQL
  • ariadne.wsgi.GraphQL