Commit f5fd5747 by Fabiano V. Santos Committed by Madhan Neethiraj

ATLAS-2925: Better logging for graph database initialization error

parent 78e41ac2
......@@ -101,7 +101,7 @@ public class AtlasGraphProvider implements IAtlasGraphProvider {
} catch (Exception ex) {
retryCounter++;
LOG.info("Failed to obtain graph instance on retry " + retryCounter + " of " + MAX_RETRY_COUNT + " error: " + ex);
LOG.warn("Failed to obtain graph instance on attempt " + retryCounter + " of " + MAX_RETRY_COUNT, ex);
if (retryCounter >= MAX_RETRY_COUNT) {
LOG.info("Max retries exceeded.");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment