Merge pull request #2474 from coreos-inc/fix-log

Fix logger statement in new auth code
This commit is contained in:
josephschorr 2017-03-24 17:46:10 -04:00 committed by GitHub
commit 7b411b2c25

View file

@ -33,7 +33,7 @@ def _auth_decorator(pass_result=False, handlers=None):
# Check for a valid result. # Check for a valid result.
if result.auth_valid: if result.auth_valid:
logger.debug('Found valid auth result: %s => (%s)', result.tuple()) logger.debug('Found valid auth result: %s', result.tuple())
# Set the various pieces of the auth context. # Set the various pieces of the auth context.
result.apply_to_context() result.apply_to_context()