Skip to content

Commit

Permalink
add logger
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtro committed May 13, 2024
1 parent b0088ee commit 33314c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/sentry/api/endpoints/auth_validate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import logging

from rest_framework.request import Request
from rest_framework.response import Response
from rest_framework.status import HTTP_200_OK, HTTP_403_FORBIDDEN
Expand All @@ -12,6 +14,8 @@
from sentry.api.base import Endpoint, control_silo_endpoint
from sentry.types.ratelimit import RateLimit, RateLimitCategory

logger: logging.Logger = logging.getLogger(__name__)


@control_silo_endpoint
class AuthValidateEndpoint(Endpoint):
Expand Down

0 comments on commit 33314c6

Please sign in to comment.