Skip to content
Snippets Groups Projects
Commit de07bd9b authored by Philipp Spohr's avatar Philipp Spohr
Browse files

fix for cyto becoming unresponsive during startup/installation

parent aca4c2a4
Branches
Tags
No related merge requests found
...@@ -23,7 +23,6 @@ package de.hhu.ba.yoshikoWrapper.core; ...@@ -23,7 +23,6 @@ package de.hhu.ba.yoshikoWrapper.core;
import java.io.File; import java.io.File;
import javax.swing.JOptionPane;
import org.slf4j.Logger; import org.slf4j.Logger;
...@@ -57,7 +56,8 @@ public class YoshikoLoader { ...@@ -57,7 +56,8 @@ public class YoshikoLoader {
} }
catch(Exception e) { catch(Exception e) {
logger.error(e.getMessage()); logger.error(e.getMessage());
JOptionPane.showMessageDialog(null, LocalizationManager.get("libFail")+" "+REQUIRED_VERSION); logger.info(LocalizationManager.get("libFail")+" "+REQUIRED_VERSION);
return; return;
} }
LibraryInterface.setVerbosity(3); LibraryInterface.setVerbosity(3);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment