We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f7be8 commit fb84373Copy full SHA for fb84373
google/auth/credentials.py
@@ -17,20 +17,22 @@
17
18
import abc
19
from enum import Enum
20
+import logging
21
import os
22
from typing import List
23
24
from google.auth import _helpers, environment_vars
25
from google.auth import exceptions
26
from google.auth import metrics
27
from google.auth._credentials_base import _BaseCredentials
-from google.auth._default import _LOGGER
28
from google.auth._refresh_worker import RefreshThreadManager
29
30
DEFAULT_UNIVERSE_DOMAIN = "googleapis.com"
31
NO_OP_TRUST_BOUNDARY_LOCATIONS: List[str] = []
32
NO_OP_TRUST_BOUNDARY_ENCODED_LOCATIONS = "0x0"
33
34
+_LOGGER = logging.getLogger("google.auth._default")
35
+
36
37
class Credentials(_BaseCredentials):
38
"""Base class for all credentials.
0 commit comments