Log IdeaWin32 loading

This commit is contained in:
Roman Shevchenko
2012-07-25 20:42:32 +02:00
parent f13622d2c2
commit ef8c2fb339
2 changed files with 7 additions and 0 deletions
@@ -46,11 +46,13 @@ public class IdeaWin32 {
available = true;
}
catch (Throwable t0) {
LOG.debug(t0);
try {
System.load(PathManager.getHomePath() + "/bin/win/" + libName + ".dll");
available = true;
}
catch (Throwable t1) {
LOG.debug(t1);
try {
System.loadLibrary(libName);
available = true;
+5
View File
@@ -31,6 +31,11 @@
<appender-ref ref="CONSOLE-ALL"/>
</category>
<category name="#com.intellij.openapi.util.io.win32.Win32LocalFileSystem">
<priority value="DEBUG"/>
<appender-ref ref="CONSOLE-ALL"/>
</category>
<root>
<priority value="INFO"/>
<appender-ref ref="CONSOLE-WARN"/>