some log messages' levels changed to info

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/social-networking/social-data-indexer-se-plugin@130035 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2016-07-06 14:57:20 +00:00
parent 3799e1a878
commit c474796066
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ public class SocialDataIndexerPlugin extends Plugin<SocialDataIndexerPluginDecla
try{
List<Feed> feeds = store.getAllFeedsByVRE(vreID);
addEnhancedFeedsInBulk(feeds, init);
logger.debug("Number of indexed feeds is " + feeds.size() + " for vre " + vreID);
logger.info("Number of indexed feeds is " + feeds.size() + " for vre " + vreID);
}catch(Exception e){
logger.error("Exception while saving feeds/comments into the index for vre " + vreID, e);
continue;
@ -178,7 +178,7 @@ public class SocialDataIndexerPlugin extends Plugin<SocialDataIndexerPluginDecla
// close connection
if(client != null){
logger.debug("Closing connection to elasticsearch cluster. " + client.toString());
logger.info("Closing connection to elasticsearch cluster. " + client.toString());
client.close();
}
}