Skip to content

Commit

Permalink
[#1346] Fix useless debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Nov 27, 2013
1 parent bd918a8 commit 73d918f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ckan/logic/__init__.py
Expand Up @@ -388,7 +388,7 @@ def get_action(action):
resolved_action_plugins[name]
)
)
log.debug('Auth function %r was inserted', plugin.name)
log.debug('Action function {0} from plugin {1} was inserted'.format(name, plugin.name))
resolved_action_plugins[name] = plugin.name
# Extensions are exempted from the auth audit for now
# This needs to be resolved later
Expand Down
2 changes: 1 addition & 1 deletion ckan/new_authz.py
Expand Up @@ -83,7 +83,7 @@ def _build(self):
resolved_auth_function_plugins[name]
)
)
log.debug('Auth function %r was inserted', plugin.name)
log.debug('Auth function {0} from plugin {1} was inserted'.format(name, plugin.name))
resolved_auth_function_plugins[name] = plugin.name
fetched_auth_functions[name] = auth_function
# Use the updated ones in preference to the originals.
Expand Down

0 comments on commit 73d918f

Please sign in to comment.