Skip to content
Snippets Groups Projects
Commit 7990c1ba authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] disabling warn log, due to issue #11

parent 8925f415
No related branches found
No related tags found
No related merge requests found
......@@ -253,7 +253,8 @@ public abstract class AbstractSynchroService extends AbstractService {
readAndVerifyIssuerSignature(source, issuerFieldName);
} catch(InvalidSignatureException e) {
invalidSignatureHits++;
logger.warn(String.format("[%s] [%s/%s/%s] %s.\n%s", peer, toIndex, toType, id, e.getMessage(), source.toString()));
// FIXME: should enable this log (after issue #11 resolution)
//logger.warn(String.format("[%s] [%s/%s/%s] %s.\n%s", peer, toIndex, toType, id, e.getMessage(), source.toString()));
}
bulkRequest.add(client.prepareIndex(toIndex, toType, id)
......@@ -286,7 +287,8 @@ public abstract class AbstractSynchroService extends AbstractService {
readAndVerifyIssuerSignature(source, issuerFieldName);
} catch(InvalidSignatureException e) {
invalidSignatureHits++;
logger.warn(String.format("[%s] [%s/%s/%s] %s.\n%s", peer, toIndex, toType, id, e.getMessage(), source.toString()));
// FIXME: should enable this log (after issue #11 resolution)
//logger.warn(String.format("[%s] [%s/%s/%s] %s.\n%s", peer, toIndex, toType, id, e.getMessage(), source.toString()));
}
bulkRequest.add(client.prepareIndex(toIndex, toType, id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment