diff options
author | Daniel Silverstone <dsilvers@digital-scurf.org> | 2012-05-16 16:57:42 +0100 |
---|---|---|
committer | Daniel Silverstone <dsilvers@digital-scurf.org> | 2012-05-16 16:57:42 +0100 |
commit | 4c50c4e079ca9604d65065b50efba97c857b53d6 (patch) | |
tree | 8086af60647b3779b063eb4de69a39f726447368 /bin | |
parent | 1f359cc5d8cea58cacf0a44ae75992af00174bae (diff) | |
download | gitano-4c50c4e079ca9604d65065b50efba97c857b53d6.tar.gz |
BIN: Indicate if we're running rulesets
Diffstat (limited to 'bin')
-rw-r--r-- | bin/gitano-auth | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/gitano-auth b/bin/gitano-auth index e989b15..35f94bd 100644 --- a/bin/gitano-auth +++ b/bin/gitano-auth @@ -121,8 +121,10 @@ gitano.config.populate_context(config, context, username) local action, reason if context["operation"] then + gitano.log.debug("Running ruleset") action, reason = gitano.lace.execute(context) else + gitano.log.debug("Bypassing ruleset") action = "allow" reason = "Nothing to test" end |