log time to init
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1423715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
856e7d19ba
commit
0a00f617a1
|
@ -35,6 +35,7 @@ import org.apache.archiva.redback.rbac.Resource;
|
|||
import org.apache.archiva.redback.role.template.RoleTemplateProcessor;
|
||||
import org.apache.archiva.redback.role.util.RoleModelUtils;
|
||||
import org.apache.archiva.redback.role.validator.RoleModelValidator;
|
||||
import org.apache.commons.lang.time.StopWatch;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
@ -57,7 +58,6 @@ import java.util.Map;
|
|||
* RoleProfileManager:
|
||||
*
|
||||
* @author: Jesse McConnell <jesse@codehaus.org>
|
||||
*
|
||||
*/
|
||||
@Service("roleManager")
|
||||
public class DefaultRoleManager
|
||||
|
@ -479,6 +479,10 @@ public class DefaultRoleManager
|
|||
@PostConstruct
|
||||
public void initialize()
|
||||
{
|
||||
|
||||
StopWatch stopWatch = new StopWatch();
|
||||
stopWatch.start();
|
||||
|
||||
try
|
||||
{
|
||||
URL baseResource = RoleManager.class.getResource( "/META-INF/redback/redback-core.xml" );
|
||||
|
@ -508,6 +512,9 @@ public class DefaultRoleManager
|
|||
{
|
||||
throw new RuntimeException( "unable to initialize RoleManager, problem with redback.xml loading", e );
|
||||
}
|
||||
|
||||
stopWatch.stop();
|
||||
log.info( "DefaultRoleManager initialize time {}", stopWatch.getTime() );
|
||||
}
|
||||
|
||||
public RedbackRoleModel getModel()
|
||||
|
|
Loading…
Reference in New Issue