Skip to content

Commit c9cec5e

Browse files
committed
debug string reprs for better query checks
1 parent aaa40e9 commit c9cec5e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

components/rsptx/db/crud/rsfiles.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ async def fetch_source_code(
124124
:param acid: str, the acid of the source code
125125
:return: SourceCodeValidator, the SourceCodeValidator object
126126
"""
127-
rslogger.debug(f"fetch_source_code: -{acid}-{filename}-{course_name}-{base_course}")
127+
rslogger.debug(
128+
f"fetch_source_code: -{repr(acid)}-{repr(filename)}-{repr(course_name)}-{repr(base_course)}"
129+
)
128130
if acid is None and filename is None:
129131
return None
130132
elif acid is None:

0 commit comments

Comments
 (0)