LOGGER.debug("Starting MKS client");
try {
// todo would it be needed to allow configuration to locate that dll ?
System.loadLibrary("mkscmapi");
isClientLoaded = true;
CLIENT = new TriclopsSiClient();
if (!CLIENT.isIntegrityClientRunning()) {
CLIENT.initialize("IntelliJ IDEA", 1, 1);
}
isClientValid = true;
} catch (Throwable t) {