##// END OF EJS Templates
logging: removed log.warning calls
super-admin -
r4999:4ec92282 default
parent child Browse files
Show More
@@ -96,7 +96,7 b' class AuthenticationPluginRegistry(objec'
96 96
97 97 # Add the fallback plugin from ini file.
98 98 if fallback_plugin:
99 log.warn(
99 log.warning(
100 100 'Using fallback authentication plugin from INI file: "%s"',
101 101 fallback_plugin)
102 102 plugin = self.get_plugin(fallback_plugin)
@@ -132,7 +132,7 b' class AuthnRootResource(AuthnResourceBas'
132 132 # Allow plugin resources with identical names by rename duplicates.
133 133 unique_name = _ensure_unique_name(resource.__name__)
134 134 if unique_name != resource.__name__:
135 log.warn('Name collision for traversal resource "%s" registered '
135 log.warning('Name collision for traversal resource "%s" registered '
136 136 'by authentication plugin "%s"', resource.__name__,
137 137 plugin_id)
138 138 resource.__name__ = unique_name
General Comments 0
You need to be logged in to leave comments. Login now