Skip to content

Commit 4950b27

Browse files
committed
added missing logger in telemetry api
1 parent deb2cf5 commit 4950b27

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

splitio/api/telemetry.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
"""Impressions API module."""
2-
32
import logging
43

54
from splitio.api import APIException
65
from splitio.api.client import HttpClientException
76
from splitio.api.commons import headers_from_metadata
87

8+
_LOGGER = logging.getLogger(__name__)
9+
910
class TelemetryAPI(object): # pylint: disable=too-few-public-methods
1011
"""Class that uses an httpClient to communicate with the Telemetry API."""
1112

0 commit comments

Comments
 (0)