From 5160909d3b084266c50b992f26220324d00438a9 Mon Sep 17 00:00:00 2001 From: Jeff LaJoie Date: Thu, 29 Jun 2017 15:17:45 -0400 Subject: [PATCH] EDUCATOR-793: converts TypeError,NotFoundError logging to debug only --- common/lib/xmodule/xmodule/video_module/video_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/video_module/video_handlers.py b/common/lib/xmodule/xmodule/video_module/video_handlers.py index be70ef0a75..c5256a2065 100644 --- a/common/lib/xmodule/xmodule/video_module/video_handlers.py +++ b/common/lib/xmodule/xmodule/video_module/video_handlers.py @@ -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)