Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 781688bb authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

Fix the error for invalid ServiceGroup owner

parent 05ad8003
No related branches found
No related tags found
No related merge requests found
......@@ -384,9 +384,7 @@ public class UITruststoreService {
loadedTrustStore.load(truststoreInputStream, token.toCharArray());
return loadedTrustStore;
} catch (Exception exception) {
LOG.error("Could not load truststore:"
+ truststoreFile
+ " Error: " + ExceptionUtils.getRootCauseMessage(exception), exception);
LOG.error("Could not load truststore:" + truststoreFile + " Error: " + ExceptionUtils.getRootCauseMessage(exception), exception);
}
return null;
}
......
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