only updated some logs
git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-transfer/uri-resolver@173993 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
eaebf0a444
commit
7983745cf6
|
@ -51,7 +51,7 @@ public class LoadingCatalogueApplicationProfilesCache {
|
|||
@Override
|
||||
public void onRemoval(RemovalNotification<String, String> arg0) {
|
||||
|
||||
logger.info(LoadingCatalogueApplicationProfilesCache.class.getSimpleName() +" cache expired");
|
||||
logger.info("cache expired");
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -45,7 +45,7 @@ public class LoadingGeoExplorerApplicationURLCache {
|
|||
|
||||
RemovalListener<String, String> removalListener = new RemovalListener<String, String>() {
|
||||
public void onRemoval(RemovalNotification<String, String> removal) {
|
||||
logger.info(LoadingGeoExplorerApplicationURLCache.class.getSimpleName() +" cache expired");
|
||||
logger.info("cache expired");
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -54,7 +54,7 @@ public class LoadingGeoExplorerApplicationURLCache {
|
|||
1, TimeUnit.DAYS).removalListener(removalListener).
|
||||
build(loader);
|
||||
|
||||
logger.info(LoadingGeoExplorerApplicationURLCache.class.getSimpleName() +" instancied");
|
||||
logger.info("cache instancied");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -46,7 +46,7 @@ public class LoadingGeonetworkInstanceCache {
|
|||
|
||||
RemovalListener<String, GeonetworkInstance> removalListener = new RemovalListener<String, GeonetworkInstance>() {
|
||||
public void onRemoval(RemovalNotification<String, GeonetworkInstance> removal) {
|
||||
logger.info(LoadingGeonetworkInstanceCache.class.getSimpleName() +" cache expired");
|
||||
logger.info("cache expired");
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -55,7 +55,7 @@ public class LoadingGeonetworkInstanceCache {
|
|||
1, TimeUnit.DAYS).removalListener(removalListener).
|
||||
build(loader);
|
||||
|
||||
logger.info(LoadingGeonetworkInstanceCache.class.getSimpleName() +" instancied");
|
||||
logger.info("cache instancied");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ public class LoadingGisViewerApplicationURLCache {
|
|||
|
||||
RemovalListener<String, String> removalListener = new RemovalListener<String, String>() {
|
||||
public void onRemoval(RemovalNotification<String, String> removal) {
|
||||
logger.info(LoadingGisViewerApplicationURLCache.class.getSimpleName() +" cache expired");
|
||||
logger.info("cache expired");
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -54,7 +54,7 @@ public class LoadingGisViewerApplicationURLCache {
|
|||
1, TimeUnit.DAYS).removalListener(removalListener).
|
||||
build(loader);
|
||||
|
||||
logger.info(LoadingGisViewerApplicationURLCache.class.getSimpleName() +" instancied");
|
||||
logger.info("cache instancied");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ public class UriResolverStartupListener implements ServletContextListener {
|
|||
contextScope = loadScopeFromEnvironment();
|
||||
ApplicationContext ctx = ContextProvider.get();
|
||||
String rootScope = ctx.container().configuration().infrastructure();
|
||||
logger.info("The ContextProvider returns the root scope: "+rootScope);
|
||||
logger.info("The ContextProvider returned the infrastructure name: "+rootScope);
|
||||
}
|
||||
catch (Exception e) {
|
||||
//
|
||||
|
@ -140,8 +140,6 @@ public class UriResolverStartupListener implements ServletContextListener {
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Gets the gis viewer profile.
|
||||
*
|
||||
|
@ -164,7 +162,6 @@ public class UriResolverStartupListener implements ServletContextListener {
|
|||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Gets the context scope.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue