// see if the bundle has a value, if not, we default to the tag contents
try {
_value = bundle.getString(_key);
if (_debug) {
ServletContext sc = pageContext.getServletContext();
sc.log("i18n:message tag: template for " + _key + " is: " + _value);
}
} catch (java.util.MissingResourceException e) {
ServletContext sc = pageContext.getServletContext();
sc.log("i18n:message tag, value not found for key:" + _key);
}