[MRM-1109] environment checks do not indicate which caused a violation

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@751517 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Porter 2009-03-08 20:45:02 +00:00
parent aeedc2ff5e
commit 3a742eeb67
1 changed files with 7 additions and 2 deletions

View File

@ -146,8 +146,13 @@ public class SecuritySynchronization
for ( Entry<String, EnvironmentCheck> entry : checkers.entrySet() )
{
EnvironmentCheck check = entry.getValue();
log.info( "Running Environment Check: " + entry.getKey() );
check.validateEnvironment( violations );
List<String> v = new ArrayList<String>();
check.validateEnvironment( v );
log.info( "Environment Check: " + entry.getKey() + " -> " + v.size() + " violation(s)" );
for ( String s : v )
{
violations.add( "[" + entry.getKey() + "] " + s );
}
}
if ( CollectionUtils.isNotEmpty( violations ) )