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:
Francesco Mangiacrapa 2018-11-06 14:20:05 +00:00
parent eaebf0a444
commit 7983745cf6
5 changed files with 8 additions and 11 deletions

View File

@ -51,7 +51,7 @@ public class LoadingCatalogueApplicationProfilesCache {
@Override @Override
public void onRemoval(RemovalNotification<String, String> arg0) { public void onRemoval(RemovalNotification<String, String> arg0) {
logger.info(LoadingCatalogueApplicationProfilesCache.class.getSimpleName() +" cache expired"); logger.info("cache expired");
} }
}; };

View File

@ -45,7 +45,7 @@ public class LoadingGeoExplorerApplicationURLCache {
RemovalListener<String, String> removalListener = new RemovalListener<String, String>() { RemovalListener<String, String> removalListener = new RemovalListener<String, String>() {
public void onRemoval(RemovalNotification<String, String> removal) { 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). 1, TimeUnit.DAYS).removalListener(removalListener).
build(loader); build(loader);
logger.info(LoadingGeoExplorerApplicationURLCache.class.getSimpleName() +" instancied"); logger.info("cache instancied");
} }
/** /**

View File

@ -46,7 +46,7 @@ public class LoadingGeonetworkInstanceCache {
RemovalListener<String, GeonetworkInstance> removalListener = new RemovalListener<String, GeonetworkInstance>() { RemovalListener<String, GeonetworkInstance> removalListener = new RemovalListener<String, GeonetworkInstance>() {
public void onRemoval(RemovalNotification<String, GeonetworkInstance> removal) { 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). 1, TimeUnit.DAYS).removalListener(removalListener).
build(loader); build(loader);
logger.info(LoadingGeonetworkInstanceCache.class.getSimpleName() +" instancied"); logger.info("cache instancied");
} }

View File

@ -45,7 +45,7 @@ public class LoadingGisViewerApplicationURLCache {
RemovalListener<String, String> removalListener = new RemovalListener<String, String>() { RemovalListener<String, String> removalListener = new RemovalListener<String, String>() {
public void onRemoval(RemovalNotification<String, String> removal) { 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). 1, TimeUnit.DAYS).removalListener(removalListener).
build(loader); build(loader);
logger.info(LoadingGisViewerApplicationURLCache.class.getSimpleName() +" instancied"); logger.info("cache instancied");
} }

View File

@ -67,7 +67,7 @@ public class UriResolverStartupListener implements ServletContextListener {
contextScope = loadScopeFromEnvironment(); contextScope = loadScopeFromEnvironment();
ApplicationContext ctx = ContextProvider.get(); ApplicationContext ctx = ContextProvider.get();
String rootScope = ctx.container().configuration().infrastructure(); 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) { catch (Exception e) {
// //
@ -140,8 +140,6 @@ public class UriResolverStartupListener implements ServletContextListener {
} }
/** /**
* Gets the gis viewer profile. * Gets the gis viewer profile.
* *
@ -164,7 +162,6 @@ public class UriResolverStartupListener implements ServletContextListener {
} }
/** /**
* Gets the context scope. * Gets the context scope.
* *