From 41b0b793de95f25741eda76b7e9b15c0bcbfe6f8 Mon Sep 17 00:00:00 2001 From: jsa Date: Thu, 9 Jul 2015 11:44:22 -0400 Subject: [PATCH] reduce log severity when building marketing links --- common/djangoapps/edxmako/shortcuts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/edxmako/shortcuts.py b/common/djangoapps/edxmako/shortcuts.py index daa2feeda8..3e584567cf 100644 --- a/common/djangoapps/edxmako/shortcuts.py +++ b/common/djangoapps/edxmako/shortcuts.py @@ -53,7 +53,7 @@ def marketing_link(name): if link_map[name] is not None: return reverse(link_map[name]) else: - log.warning("Cannot find corresponding link for name: {name}".format(name=name)) + log.debug("Cannot find corresponding link for name: %s", name) return '#'