Fixed Log configuration to debug

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/data-miner-manager-cl@144895 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2017-03-14 11:46:29 +00:00
parent 6bff8fae98
commit 7ebea8d780
2 changed files with 8 additions and 8 deletions

View File

@ -214,7 +214,7 @@ public class SClient4WPS extends SClient {
"Invalid DataMiner service address: "
+ serviceAddressUrl);
} else {
logger.info("DataMiner service address: " + serviceAddressUrl);
logger.debug("DataMiner service address: " + serviceAddressUrl);
// http://dataminer1-devnext.d4science.org/wps/WebProcessingService
wpsProcessingServlet = serviceAddressUrl
+ Constants.WPSWebProcessingService;
@ -774,7 +774,7 @@ public class SClient4WPS extends SClient {
public List<Parameter> getInputParameters(Operator operator)
throws ServiceException {
try {
logger.info("Parameters of algorithm " + operator.getId());
logger.debug("Parameters of algorithm " + operator.getId());
ProcessInformations processInformations;
try {

View File

@ -94,9 +94,9 @@ public class SClient4WPSSession implements Serializable {
public boolean connect(String url) throws WPSClientException {
logger.info("CONNECT: " + url);
logger.info("LoggedSevices: " + loggedServices.keySet());
logger.debug("LoggedSevices: " + loggedServices.keySet());
if (loggedServices.containsKey(url)) {
logger.info("Service already registered: " + url);
logger.debug("Service already registered: " + url);
return false;
}
logger.debug("Service not registered");
@ -111,7 +111,7 @@ public class SClient4WPSSession implements Serializable {
ProcessDescriptionsDocument processDescs = describeAllProcesses(url);
if (processDescs != null && capsDoc != null) {
logger.info("Adding processes descriptions to logged services "
logger.debug("Adding processes descriptions to logged services "
+ url);
processDescriptions.put(url, processDescs);
logger.debug("ProcessDescriptions key: "
@ -137,9 +137,9 @@ public class SClient4WPSSession implements Serializable {
* @throws WPSClientException
*/
public boolean connectForMonitoring(String url) throws WPSClientException {
logger.info("CONNECT");
logger.debug("CONNECT");
if (loggedServices.containsKey(url)) {
logger.info("Service already registered: " + url);
logger.debug("Service already registered: " + url);
return false;
}
@ -156,7 +156,7 @@ public class SClient4WPSSession implements Serializable {
/*
* if (loggedServices.containsKey(url)) { loggedServices.remove(url);
* processDescriptions.remove(url);
* logger.info("service removed successfully: " + url); }
* logger.debug("service removed successfully: " + url); }
*/
}