Commit a45ac2f4 by Jeff LaJoie Committed by GitHub

Merge pull request #15437 from edx/jlajoie/EDUCATOR-793

EDUCATOR-793: converts TypeError,NotFoundError logging to debug only
parents a087ce48 5160909d
......@@ -239,7 +239,7 @@ class VideoStudentViewHandlers(object):
try:
transcript = self.translation(request.GET.get('videoId', None), transcripts)
except (TypeError, NotFoundError) as ex:
log.info(ex.message)
log.debug(ex.message)
# Try to return static URL redirection as last resort
# if no translation is required
return self.get_static_transcript(request, transcripts)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment