Skip to content

Commit 6e60cfd

Browse files
authored
fix: Added full xapi response for debugging (#2439)
1 parent b8cb227 commit 6e60cfd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Unreleased
1717
----------
1818
* nothing unreleased
1919

20+
[6.2.18]
21+
--------
22+
* fix: Logged response received from XAPI in logs to debug the XAPI transmission issues.
23+
2024
[6.2.17]
2125
--------
2226
* fix: Added response received from XAPI in logs to debug the XAPI transmission issues.

enterprise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Your project description goes here.
33
"""
44

5-
__version__ = "6.2.17"
5+
__version__ = "6.2.18"

integrated_channels/xapi/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def save_statement(self, statement):
6363
bool(response),
6464
getattr(response.response, 'status', 'Unknown')
6565
)
66-
LOGGER.info("[Integrated Channel][xAPI] LRS Full Response: %r", response)
66+
LOGGER.info("[Integrated Channel][xAPI] LRS Full Response: %s", response)
6767

6868
if hasattr(response, 'response'):
6969
LOGGER.info(

0 commit comments

Comments
 (0)