go-lang-plugin-org / go-lang-idea-plugin

Google Go language IDE built using the IntelliJ Platform
https://plugins.jetbrains.com/plugin/5047
Other
4.56k stars 570 forks source link

Refactor- renaming doesn't rename all occurrences #1827

Closed ghost closed 9 years ago

ghost commented 9 years ago

Aloha, I have a function:

func DoSomething(){
    var k = 1
    k = 2
    k+=k
}

when I select any 'k' and right click->refactor->rename and change 'k' to 'd' it changes all of the occurrences of k to d. However, when I accept the change with enter, all the items revert back except for the variable deceleration.

func DoSomething(){
    var d = 1
    k = 2
    k+=k
}

I am using IDEA 14.1.4 With go version go1.4.2 windows/amd64 go version go1.4.2 (appengine-1.9.24) windows/amd64 java 7 update 75 plugin version 0.9.402 Thanks

dlsniper commented 9 years ago

Hi, please update the plugin to 0.9.460 as I can't reproduce with the given example. Thank you.

ghost commented 9 years ago

Thanks dlsniper, I updated and I still get the issue.

Is there any data I can share that may help pinpoint the issue?

dlsniper commented 9 years ago

Is that the actual code that reproduces the issue? Or even better, can you please record a video / gif with the issue? I really can't reproduce the issue with the provided code.

ghost commented 9 years ago

I just made that function because it's small, it compiles and there are a lot of the variables in it so it's easier too see, but the issue is the same with any variable renaming. Here is the gif: renaming issue In the gif I am renaming a variable deceleration, as I do that, you can see all the variables changing. When I press enter they all revert apart from the variable declaration. I then change the declaration manually back to 'k' and rename a different k variable which also just changes the variable declaration. Thanks

auduchinok commented 9 years ago

I couldn't reproduce the bug. Could you provide the whole file and your settings (File – Export Settings...), please?

dlsniper commented 9 years ago

I still can't reproduce it as well unfortunately. I've tried the same steps shown in the gif but nothing. Additionality, after I rename var k = 1 to var d = 1 the line k+=k becomes d += d which doesn't seem to happen in the gif.

ghost commented 9 years ago

I ended up reinstalling the most recent version of java, Go and gae and now everything seems to work. Thank you for the help.

zolotov commented 9 years ago

@BoazJR glad to hear that everything works for you, but it's might be important to know what exactly was wrong. Maybe some logs were saved after installation? You can find them under "Help | Show Logs" menu.

ghost commented 9 years ago

Sure, here they are:

2015-08-14 10:21:38,661 [      0]   INFO -        #com.intellij.idea.Main - ------------------------------------------------------ IDE STARTED ------------------------------------------------------ 
2015-08-14 10:21:38,708 [     47]   INFO -        #com.intellij.idea.Main - IDE: IntelliJ IDEA (build #IC-141.1532.4, 18 Jun 2015 00:00) 
2015-08-14 10:21:38,708 [     47]   INFO -        #com.intellij.idea.Main - OS: Windows 8 (6.2, x86) 
2015-08-14 10:21:38,708 [     47]   INFO -        #com.intellij.idea.Main - JRE: 1.8.0_40-b26 (Oracle Corporation) 
2015-08-14 10:21:38,708 [     47]   INFO -        #com.intellij.idea.Main - JVM: 25.40-b25 (Java HotSpot(TM) Server VM) 
2015-08-14 10:21:38,879 [    218]   INFO -        #com.intellij.idea.Main - JVM Args: -Xms128m -Xmx512m -XX:MaxPermSize=250m -XX:ReservedCodeCacheSize=150m -XX:+UseConcMarkSweepGC -XX:SoftRefLRUPolicyMSPerMB=50 -ea -Dsun.io.useCanonCaches=false -Djava.net.preferIPv4Stack=true -Djb.vmOptions=C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\idea.exe.vmoptions -Xbootclasspath/a:C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 14.1.4\lib\boot.jar -Didea.paths.selector=IdeaIC14 
2015-08-14 10:21:39,333 [    672]   INFO -        #com.intellij.idea.Main - JNA library loaded (32-bit) in 454 ms 
2015-08-14 10:21:39,457 [    796]   INFO - penapi.util.io.win32.IdeaWin32 - Native filesystem for Windows is operational 
2015-08-14 10:21:39,661 [   1000]   INFO -        #com.intellij.idea.Main - Using "FocusKiller" library to prevent focus stealing. 
2015-08-14 10:34:21,900 [ 763239]   INFO - llij.ide.plugins.PluginManager - 29 plugins initialized in 528 ms 
2015-08-14 10:34:21,907 [ 763246]   INFO - llij.ide.plugins.PluginManager - Loaded bundled plugins: Android Support (10.1.1.0), Ant Support (1.0), Bytecode Viewer (0.1), CVS Integration (11), Copyright (8.1), Coverage, Eclipse Integration (3.0), EditorConfig (1.0), Git Integration (8.1), GitHub, Gradle, Groovy (9.0), I18n for Java, IDEA CORE, IntelliLang (8.0), JUnit (1.0), Java Bytecode Decompiler (0.1), JavaFX (1.0), Maven Integration, Plugin DevKit (1.0), Properties Support, Subversion Integration (1.1), Task Management (1.0), Terminal (0.1), TestNG-J (8.0), UI Designer, XPathView + XSLT Support (4), XSLT-Debugger (1.4), hg4idea (10.0) 
2015-08-14 10:34:27,615 [ 768954]   INFO - ellij.concurrency.JobScheduler - 50 ms execution limit failed for: com.intellij.openapi.progress.impl.CoreProgressManager$1@1cba250; elapsed time was 150ms 
2015-08-14 10:34:27,634 [ 768973]   INFO - ellij.vfs.persistent.FSRecords - Marking VFS as corrupted 
2015-08-14 10:34:27,637 [ 768976]   INFO - ellij.util.io.PagedFileStorage - lower=100; upper=200; buffer=10; max=498008064 
2015-08-14 10:34:27,797 [ 769136]   INFO - api.vfs.impl.local.FileWatcher - Starting file watcher: C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\fsnotifier.exe 
2015-08-14 10:34:29,426 [ 770765]   INFO - api.vfs.impl.local.FileWatcher - Native file watcher is operational. 
2015-08-14 10:34:31,135 [ 772474]   INFO - .history.utils.LocalHistoryLog - local history version mismatch (was: 0, expected: 5), rebuilding... 
2015-08-14 10:34:31,135 [ 772474]   INFO - .history.utils.LocalHistoryLog - FS has been rebuild, rebuilding local history... 
2015-08-14 10:34:31,471 [ 772810]  ERROR - ij.components.ComponentManager - Cyclic component initialization: com.intellij.ide.ui.LafManager [Plugin: com.intellij] 
com.intellij.diagnostic.PluginException: Cyclic component initialization: com.intellij.ide.ui.LafManager [Plugin: com.intellij]
    at com.intellij.openapi.components.impl.ComponentManagerImpl$ComponentConfigComponentAdapter$1.getComponentInstance(ComponentManagerImpl.java:555)
    at com.intellij.openapi.components.impl.ComponentManagerImpl$ComponentConfigComponentAdapter.getComponentInstance(ComponentManagerImpl.java:610)
    at com.intellij.util.pico.DefaultPicoContainer.getLocalInstance(DefaultPicoContainer.java:245)
    at com.intellij.util.pico.DefaultPicoContainer.getComponentInstance(DefaultPicoContainer.java:211)
    at com.intellij.openapi.components.impl.ComponentManagerImpl.getComponentFromContainer(ComponentManagerImpl.java:168)
    at com.intellij.openapi.application.impl.ApplicationImpl.getComponentFromContainer(ApplicationImpl.java:533)
    at com.intellij.openapi.components.impl.ComponentManagerImpl.getComponent(ComponentManagerImpl.java:199)
    at com.intellij.openapi.components.impl.ComponentManagerImpl.getComponent(ComponentManagerImpl.java:194)
    at com.intellij.ide.ui.LafManager.getInstance(LafManager.java:29)
    at com.intellij.openapi.editor.colors.impl.EditorColorsManagerImpl.setGlobalScheme(EditorColorsManagerImpl.java:237)
    at com.intellij.ide.ui.laf.darcula.DarculaInstaller.install(DarculaInstaller.java:48)
    at com.intellij.ide.ui.laf.LafManagerImpl.initComponent(LafManagerImpl.java:222)
    at com.intellij.openapi.components.impl.ComponentManagerImpl$ComponentConfigComponentAdapter$1.getComponentInstance(ComponentManagerImpl.java:568)
    at com.intellij.openapi.components.impl.ComponentManagerImpl$ComponentConfigComponentAdapter.getComponentInstance(ComponentManagerImpl.java:610)
    at com.intellij.util.pico.DefaultPicoContainer.getLocalInstance(DefaultPicoContainer.java:245)
    at com.intellij.util.pico.DefaultPicoContainer.getComponentInstance(DefaultPicoContainer.java:211)
    at com.intellij.openapi.components.impl.ComponentManagerImpl.createComponent(ComponentManagerImpl.java:125)
    at com.intellij.openapi.application.impl.ApplicationImpl.createComponent(ApplicationImpl.java:354)
    at com.intellij.openapi.components.impl.ComponentManagerImpl.createComponents(ComponentManagerImpl.java:116)
    at com.intellij.openapi.components.impl.ComponentManagerImpl.init(ComponentManagerImpl.java:87)
    at com.intellij.openapi.components.impl.stores.ApplicationStoreImpl.load(ApplicationStoreImpl.java:101)
    at com.intellij.openapi.application.impl.ApplicationImpl.load(ApplicationImpl.java:499)
    at com.intellij.openapi.application.impl.ApplicationImpl.load(ApplicationImpl.java:481)
    at com.intellij.idea.IdeaApplication.run(IdeaApplication.java:170)
    at com.intellij.idea.MainImpl$1$1$1.run(MainImpl.java:52)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:749)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:702)
    at java.awt.EventQueue$3.run(EventQueue.java:696)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:719)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:362)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
2015-08-14 10:34:31,487 [ 772826]  ERROR - ij.components.ComponentManager - IntelliJ IDEA 14.1.4  Build #IC-141.1532.4 
2015-08-14 10:34:31,488 [ 772827]  ERROR - ij.components.ComponentManager - JDK: 1.8.0_40 
2015-08-14 10:34:31,488 [ 772827]  ERROR - ij.components.ComponentManager - VM: Java HotSpot(TM) Server VM 
2015-08-14 10:34:31,488 [ 772827]  ERROR - ij.components.ComponentManager - Vendor: Oracle Corporation 
2015-08-14 10:34:31,488 [ 772827]  ERROR - ij.components.ComponentManager - OS: Windows 8 
2015-08-14 10:34:35,643 [ 776982]   INFO - rains.ide.BuiltInServerManager - built-in server started, port 63342 
2015-08-14 10:34:41,005 [ 782344]   INFO -                  TestNG Runner - Create TestNG Template Configuration 
2015-08-14 10:34:41,540 [ 782879]   INFO - ellij.project.impl.ProjectImpl - 20 project components initialized in 4105 ms 
2015-08-14 10:34:41,541 [ 782880]   INFO - le.impl.ModuleManagerComponent - 0 module(s) loaded in 0 ms 
2015-08-14 10:34:44,349 [ 785688]   INFO - tellij.xml.Html5SchemaProvider - HTML5_SCHEMA_LOCATION = C:/Program Files (x86)/JetBrains/IntelliJ IDEA Community Edition 14.1.4/lib/idea.jar!/resources/html5-schema/html5.rnc 
2015-08-14 10:34:44,349 [ 785688]   INFO - tellij.xml.Html5SchemaProvider - XHTML5_SCHEMA_LOCATION = C:/Program Files (x86)/JetBrains/IntelliJ IDEA Community Edition 14.1.4/lib/idea.jar!/resources/html5-schema/xhtml5.rnc 
2015-08-14 10:34:44,349 [ 785688]   INFO - tellij.xml.Html5SchemaProvider - CHARS_DTD_LOCATION = C:/Program Files (x86)/JetBrains/IntelliJ IDEA Community Edition 14.1.4/lib/idea.jar!/resources/html5-schema/html5chars.ent 
2015-08-14 10:34:44,967 [ 786306]   INFO - pl.stores.ApplicationStoreImpl - 83 application components initialized in 22864 ms 
2015-08-14 10:34:45,306 [ 786645]   INFO - .intellij.idea.IdeaApplication - App initialization took 810531 ms 
2015-08-14 10:56:24,531 [2085870]   INFO - org.jetbrains.io.BuiltInServer - web server stopped 
2015-08-14 10:56:24,532 [2085871]   INFO - Types.impl.FileTypeManagerImpl - FileTypeManager: 0 auto-detected files
Elapsed time on auto-detect: 0 ms 
2015-08-14 10:56:24,586 [2085925]   INFO - dea.ddms.adb.AdbService$Ddmlib - DDMLib terminated 
2015-08-14 10:56:24,586 [2085925]   INFO - il.indexing.FileBasedIndexImpl - START INDEX SHUTDOWN 
2015-08-14 10:56:24,604 [2085943]   INFO - il.indexing.FileBasedIndexImpl - END INDEX SHUTDOWN 
2015-08-14 10:56:24,604 [2085943]   INFO - stubs.SerializationManagerImpl - START StubSerializationManager SHUTDOWN 
2015-08-14 10:56:24,605 [2085944]   INFO - stubs.SerializationManagerImpl - END StubSerializationManager SHUTDOWN 
2015-08-14 10:56:24,757 [2086096]   WARN - api.vfs.impl.local.FileWatcher - Watcher terminated with exit code 0 
2015-08-14 10:56:24,758 [2086097]   INFO - newvfs.persistent.PersistentFS - VFS dispose started 
2015-08-14 10:56:24,759 [2086098]   INFO - newvfs.persistent.PersistentFS - VFS dispose completed 
2015-08-14 10:56:27,551 [2088890]   INFO -        #com.intellij.idea.Main - ------------------------------------------------------ IDE SHUTDOWN ------------------------------------------------------ 
zolotov commented 9 years ago

2015-08-14 10:21:38,661

Looks a little out of date :( Thanks anyway.

ghost commented 9 years ago

??, I thought you wanted the first log right after the installation, this is the most recent one, or would you rather have the whole file?

------------------------------------------------------ IDE STARTED ------------------------------------------------------ 
2015-08-24 17:32:48,722 [     78]   INFO -        #com.intellij.idea.Main - IDE: IntelliJ IDEA (build #IC-141.1532.4, 18 Jun 2015 00:00) 
2015-08-24 17:32:48,722 [     78]   INFO -        #com.intellij.idea.Main - OS: Windows 8 (6.2, x86) 
2015-08-24 17:32:48,722 [     78]   INFO -        #com.intellij.idea.Main - JRE: 1.8.0_40-b26 (Oracle Corporation) 
2015-08-24 17:32:48,722 [     78]   INFO -        #com.intellij.idea.Main - JVM: 25.40-b25 (Java HotSpot(TM) Server VM) 
2015-08-24 17:32:48,722 [     78]   INFO -        #com.intellij.idea.Main - JVM Args: -Xms128m -Xmx512m -XX:MaxPermSize=250m -XX:ReservedCodeCacheSize=150m -XX:+UseConcMarkSweepGC -XX:SoftRefLRUPolicyMSPerMB=50 -ea -Dsun.io.useCanonCaches=false -Djava.net.preferIPv4Stack=true -Djb.vmOptions=C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\idea.exe.vmoptions -Xbootclasspath/a:C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 14.1.4\lib\boot.jar -Didea.paths.selector=IdeaIC14 
2015-08-24 17:32:49,050 [    406]   INFO -        #com.intellij.idea.Main - JNA library loaded (32-bit) in 328 ms 
2015-08-24 17:32:49,050 [    406]   INFO - penapi.util.io.win32.IdeaWin32 - Native filesystem for Windows is operational 
2015-08-24 17:32:49,050 [    406]   INFO -        #com.intellij.idea.Main - Using "FocusKiller" library to prevent focus stealing. 
2015-08-24 17:32:50,738 [   2094]   INFO - llij.ide.plugins.PluginManager - 31 plugins initialized in 641 ms 
2015-08-24 17:32:50,738 [   2094]   INFO - llij.ide.plugins.PluginManager - Loaded bundled plugins: Android Support (10.1.1.0), Ant Support (1.0), Bytecode Viewer (0.1), CVS Integration (11), Copyright (8.1), Coverage, Eclipse Integration (3.0), EditorConfig (1.0), Git Integration (8.1), GitHub, Gradle, Groovy (9.0), I18n for Java, IDEA CORE, IntelliLang (8.0), JUnit (1.0), Java Bytecode Decompiler (0.1), JavaFX (1.0), Maven Integration, Plugin DevKit (1.0), Properties Support, Subversion Integration (1.1), Task Management (1.0), Terminal (0.1), TestNG-J (8.0), UI Designer, XPathView + XSLT Support (4), XSLT-Debugger (1.4), hg4idea (10.0) 
2015-08-24 17:32:50,738 [   2094]   INFO - llij.ide.plugins.PluginManager - Loaded custom plugins: Go (0.9.460), YAML/Ansible support (0.7.3) 
2015-08-24 17:32:51,316 [   2672]   INFO - ellij.util.io.PagedFileStorage - lower=100; upper=200; buffer=10; max=498008064 
2015-08-24 17:32:51,347 [   2703]   INFO - api.vfs.impl.local.FileWatcher - Starting file watcher: C:\Program Files (x86)\JetBrains\IntelliJ IDEA Community Edition 14.1.4\bin\fsnotifier.exe 
2015-08-24 17:32:51,363 [   2719]   INFO - api.vfs.impl.local.FileWatcher - Native file watcher is operational. 
2015-08-24 17:32:51,780 [   3136]   INFO - lij.diagnostic.DebugLogManager - Set DEBUG for the following categories: [] 
2015-08-24 17:32:52,086 [   3442]   INFO - rains.ide.BuiltInServerManager - built-in server started, port 63342 
2015-08-24 17:32:52,672 [   4028]   INFO -                  TestNG Runner - Create TestNG Template Configuration 
2015-08-24 17:32:52,719 [   4075]   INFO - ellij.project.impl.ProjectImpl - 20 project components initialized in 469 ms 
2015-08-24 17:32:52,719 [   4075]   INFO - le.impl.ModuleManagerComponent - 0 module(s) loaded in 0 ms 
2015-08-24 17:32:53,078 [   4434]   INFO - pl.stores.ApplicationStoreImpl - 84 application components initialized in 2309 ms 
2015-08-24 17:32:54,297 [   5653]   INFO - .intellij.idea.IdeaApplication - App initialization took 6258 ms 
2015-08-24 17:32:55,188 [   6544]   INFO -                  TestNG Runner - Create TestNG Template Configuration 
2015-08-24 17:32:58,581 [   9937]   INFO - ellij.project.impl.ProjectImpl - 141 project components initialized in 3862 ms 
2015-08-24 17:32:58,680 [  10036]   INFO - le.impl.ModuleManagerComponent - 1 module(s) loaded in 99 ms 
2015-08-24 17:32:58,903 [  10259]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-24 17:32:58,903 [  10259]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-24 17:32:58,903 [  10259]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-24 17:32:58,903 [  10259]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-24 17:32:58,903 [  10259]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-24 17:32:58,903 [  10259]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-24 17:32:58,903 [  10259]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-24 17:33:00,306 [  11662]   INFO - indexing.UnindexedFilesUpdater - Indexable files iterated in 179 ms 
2015-08-24 17:33:01,082 [  12438]   INFO - tartup.impl.StartupManagerImpl - C:\Users\bjruc_000\GoProjects\src\github.com\BoazJR\auth\.idea\misc.xml case-sensitivity: false 
2015-08-24 17:33:01,273 [  12629]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-24 17:33:01,570 [  12926]   INFO - CompilerWorkspaceConfiguration - Available processors: 8 
2015-08-24 17:33:02,759 [  14115]   INFO - tor.impl.FileEditorManagerImpl - Project opening took 8081 ms 
2015-08-24 17:40:02,139 [ 433495]   INFO - openapi.editor.impl.EditorImpl - Cache hits:4096, total requests:6092,file://C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/authTesting/registration_test.go 
2015-08-24 17:41:59,266 [ 550622]   INFO - openapi.editor.impl.EditorImpl - Cache hits:8192, total requests:11149,file://C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/authTesting/registration_test.go 
2015-08-24 17:47:51,298 [ 902654]   INFO - openapi.editor.impl.EditorImpl - Cache hits:12288, total requests:16931,file://C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/authTesting/registration_test.go 
2015-08-24 17:53:01,275 [1212631]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-24 18:06:02,393 [1993749]   INFO - openapi.editor.impl.EditorImpl - Cache hits:16384, total requests:22984,file://C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/authTesting/registration_test.go 
2015-08-24 18:13:01,276 [2412632]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 00:26:23,687 [24815043]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 09:12:29,517 [56380873]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 09:13:48,243 [56459599]   WARN - onents.impl.ServiceManagerImpl - com.intellij.openapi.graph.impl.GraphManagerImpl 
java.lang.ClassNotFoundException: com.intellij.openapi.graph.impl.GraphManagerImpl
    at com.intellij.util.lang.UrlClassLoader.findClass(UrlClassLoader.java:212)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:348)
    at com.intellij.openapi.components.impl.ServiceManagerImpl.processAllImplementationClasses(ServiceManagerImpl.java:112)
    at com.intellij.ide.actions.ExportSettingsAction.getExportableComponentsMap(ExportSettingsAction.java:162)
    at com.intellij.ide.actions.ExportSettingsAction.actionPerformed(ExportSettingsAction.java:68)
    at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAware(ActionUtil.java:182)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter$1.run(ActionMenuItem.java:312)
    at com.intellij.openapi.wm.impl.FocusManagerImpl.runOnOwnContext(FocusManagerImpl.java:958)
    at com.intellij.openapi.wm.impl.IdeFocusManagerImpl.runOnOwnContext(IdeFocusManagerImpl.java:124)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter.actionPerformed(ActionMenuItem.java:282)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem.fireActionPerformed(ActionMenuItem.java:109)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.doClick(BegMenuItemUI.java:512)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.access$300(BegMenuItemUI.java:44)
    at com.intellij.ui.plaf.beg.BegMenuItemUI$MyMouseInputHandler.mouseReleased(BegMenuItemUI.java:532)
    at java.awt.Component.processMouseEvent(Component.java:6525)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6290)
    at java.awt.Container.processEvent(Container.java:2234)
    at java.awt.Component.dispatchEventImpl(Component.java:4881)
    at java.awt.Container.dispatchEventImpl(Container.java:2292)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
    at java.awt.Container.dispatchEventImpl(Container.java:2278)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:751)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:702)
    at java.awt.EventQueue$3.run(EventQueue.java:696)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:724)
    at java.awt.EventQueue$4.run(EventQueue.java:722)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:721)
    at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:734)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:565)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:382)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
2015-08-25 09:13:48,243 [56459599]   WARN - onents.impl.ServiceManagerImpl - com.intellij.openapi.graph.impl.builder.NodeFactoryImpl 
java.lang.ClassNotFoundException: com.intellij.openapi.graph.impl.builder.NodeFactoryImpl
    at com.intellij.util.lang.UrlClassLoader.findClass(UrlClassLoader.java:212)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:348)
    at com.intellij.openapi.components.impl.ServiceManagerImpl.processAllImplementationClasses(ServiceManagerImpl.java:112)
    at com.intellij.ide.actions.ExportSettingsAction.getExportableComponentsMap(ExportSettingsAction.java:162)
    at com.intellij.ide.actions.ExportSettingsAction.actionPerformed(ExportSettingsAction.java:68)
    at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAware(ActionUtil.java:182)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter$1.run(ActionMenuItem.java:312)
    at com.intellij.openapi.wm.impl.FocusManagerImpl.runOnOwnContext(FocusManagerImpl.java:958)
    at com.intellij.openapi.wm.impl.IdeFocusManagerImpl.runOnOwnContext(IdeFocusManagerImpl.java:124)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter.actionPerformed(ActionMenuItem.java:282)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem.fireActionPerformed(ActionMenuItem.java:109)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.doClick(BegMenuItemUI.java:512)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.access$300(BegMenuItemUI.java:44)
    at com.intellij.ui.plaf.beg.BegMenuItemUI$MyMouseInputHandler.mouseReleased(BegMenuItemUI.java:532)
    at java.awt.Component.processMouseEvent(Component.java:6525)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6290)
    at java.awt.Container.processEvent(Container.java:2234)
    at java.awt.Component.dispatchEventImpl(Component.java:4881)
    at java.awt.Container.dispatchEventImpl(Container.java:2292)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
    at java.awt.Container.dispatchEventImpl(Container.java:2278)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:751)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:702)
    at java.awt.EventQueue$3.run(EventQueue.java:696)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:724)
    at java.awt.EventQueue$4.run(EventQueue.java:722)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:721)
    at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:734)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:565)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:382)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
2015-08-25 09:13:48,243 [56459599]   WARN - onents.impl.ServiceManagerImpl - com.intellij.openapi.graph.impl.builder.util.CustomGraphActionsFactoryImpl 
java.lang.ClassNotFoundException: com.intellij.openapi.graph.impl.builder.util.CustomGraphActionsFactoryImpl
    at com.intellij.util.lang.UrlClassLoader.findClass(UrlClassLoader.java:212)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:348)
    at com.intellij.openapi.components.impl.ServiceManagerImpl.processAllImplementationClasses(ServiceManagerImpl.java:112)
    at com.intellij.ide.actions.ExportSettingsAction.getExportableComponentsMap(ExportSettingsAction.java:162)
    at com.intellij.ide.actions.ExportSettingsAction.actionPerformed(ExportSettingsAction.java:68)
    at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAware(ActionUtil.java:182)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter$1.run(ActionMenuItem.java:312)
    at com.intellij.openapi.wm.impl.FocusManagerImpl.runOnOwnContext(FocusManagerImpl.java:958)
    at com.intellij.openapi.wm.impl.IdeFocusManagerImpl.runOnOwnContext(IdeFocusManagerImpl.java:124)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter.actionPerformed(ActionMenuItem.java:282)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem.fireActionPerformed(ActionMenuItem.java:109)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.doClick(BegMenuItemUI.java:512)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.access$300(BegMenuItemUI.java:44)
    at com.intellij.ui.plaf.beg.BegMenuItemUI$MyMouseInputHandler.mouseReleased(BegMenuItemUI.java:532)
    at java.awt.Component.processMouseEvent(Component.java:6525)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6290)
    at java.awt.Container.processEvent(Container.java:2234)
    at java.awt.Component.dispatchEventImpl(Component.java:4881)
    at java.awt.Container.dispatchEventImpl(Container.java:2292)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
    at java.awt.Container.dispatchEventImpl(Container.java:2278)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:751)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:702)
    at java.awt.EventQueue$3.run(EventQueue.java:696)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:724)
    at java.awt.EventQueue$4.run(EventQueue.java:722)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:721)
    at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:734)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:565)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:382)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
2015-08-25 09:13:48,243 [56459599]   WARN - onents.impl.ServiceManagerImpl - com.intellij.openapi.graph.impl.GraphPeerFactoryImpl 
java.lang.ClassNotFoundException: com.intellij.openapi.graph.impl.GraphPeerFactoryImpl
    at com.intellij.util.lang.UrlClassLoader.findClass(UrlClassLoader.java:212)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:348)
    at com.intellij.openapi.components.impl.ServiceManagerImpl.processAllImplementationClasses(ServiceManagerImpl.java:112)
    at com.intellij.ide.actions.ExportSettingsAction.getExportableComponentsMap(ExportSettingsAction.java:162)
    at com.intellij.ide.actions.ExportSettingsAction.actionPerformed(ExportSettingsAction.java:68)
    at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAware(ActionUtil.java:182)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter$1.run(ActionMenuItem.java:312)
    at com.intellij.openapi.wm.impl.FocusManagerImpl.runOnOwnContext(FocusManagerImpl.java:958)
    at com.intellij.openapi.wm.impl.IdeFocusManagerImpl.runOnOwnContext(IdeFocusManagerImpl.java:124)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter.actionPerformed(ActionMenuItem.java:282)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem.fireActionPerformed(ActionMenuItem.java:109)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.doClick(BegMenuItemUI.java:512)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.access$300(BegMenuItemUI.java:44)
    at com.intellij.ui.plaf.beg.BegMenuItemUI$MyMouseInputHandler.mouseReleased(BegMenuItemUI.java:532)
    at java.awt.Component.processMouseEvent(Component.java:6525)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6290)
    at java.awt.Container.processEvent(Container.java:2234)
    at java.awt.Component.dispatchEventImpl(Component.java:4881)
    at java.awt.Container.dispatchEventImpl(Container.java:2292)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
    at java.awt.Container.dispatchEventImpl(Container.java:2278)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:751)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:702)
    at java.awt.EventQueue$3.run(EventQueue.java:696)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:724)
    at java.awt.EventQueue$4.run(EventQueue.java:722)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:721)
    at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:734)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:565)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:382)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
2015-08-25 09:13:48,243 [56459599]   WARN - onents.impl.ServiceManagerImpl - com.intellij.openapi.graph.impl.GraphSvgExporterImpl 
java.lang.ClassNotFoundException: com.intellij.openapi.graph.impl.GraphSvgExporterImpl
    at com.intellij.util.lang.UrlClassLoader.findClass(UrlClassLoader.java:212)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:348)
    at com.intellij.openapi.components.impl.ServiceManagerImpl.processAllImplementationClasses(ServiceManagerImpl.java:112)
    at com.intellij.ide.actions.ExportSettingsAction.getExportableComponentsMap(ExportSettingsAction.java:162)
    at com.intellij.ide.actions.ExportSettingsAction.actionPerformed(ExportSettingsAction.java:68)
    at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAware(ActionUtil.java:182)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter$1.run(ActionMenuItem.java:312)
    at com.intellij.openapi.wm.impl.FocusManagerImpl.runOnOwnContext(FocusManagerImpl.java:958)
    at com.intellij.openapi.wm.impl.IdeFocusManagerImpl.runOnOwnContext(IdeFocusManagerImpl.java:124)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem$ActionTransmitter.actionPerformed(ActionMenuItem.java:282)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at com.intellij.openapi.actionSystem.impl.ActionMenuItem.fireActionPerformed(ActionMenuItem.java:109)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.doClick(BegMenuItemUI.java:512)
    at com.intellij.ui.plaf.beg.BegMenuItemUI.access$300(BegMenuItemUI.java:44)
    at com.intellij.ui.plaf.beg.BegMenuItemUI$MyMouseInputHandler.mouseReleased(BegMenuItemUI.java:532)
    at java.awt.Component.processMouseEvent(Component.java:6525)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6290)
    at java.awt.Container.processEvent(Container.java:2234)
    at java.awt.Component.dispatchEventImpl(Component.java:4881)
    at java.awt.Container.dispatchEventImpl(Container.java:2292)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4898)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4533)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4462)
    at java.awt.Container.dispatchEventImpl(Container.java:2278)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4703)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:751)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:702)
    at java.awt.EventQueue$3.run(EventQueue.java:696)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:724)
    at java.awt.EventQueue$4.run(EventQueue.java:722)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:75)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:721)
    at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:734)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:565)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:382)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
2015-08-25 09:15:42,472 [56573828]   WARN - options.ex.ConfigurableWrapper - XML does not provide id for class com.goide.configuration.GoConfigurableProvider$GoCompositeConfigurable 
2015-08-25 09:16:41,791 [56633147]   INFO - on.console.RunIdeConsoleAction - Loading javax.script.* engines... 
2015-08-25 09:16:43,727 [56635083]   INFO - on.console.RunIdeConsoleAction - org.codehaus.groovy.jsr223.GroovyScriptEngineFactory: *.groovy: Groovy/2.3.9 (Groovy Scripting Engine/2.0) 
2015-08-25 09:16:43,779 [56635135]   INFO - on.console.RunIdeConsoleAction - jdk.nashorn.api.scripting.NashornScriptEngineFactory: *.js: ECMAScript/ECMA - 262 Edition 5.1 (Oracle Nashorn/1.8.0_40) 
2015-08-25 09:17:28,916 [56680272]   INFO -                  TestNG Runner - Create TestNG Template Configuration 
2015-08-25 09:17:28,977 [56680333]   INFO - ellij.project.impl.ProjectImpl - 141 project components initialized in 255 ms 
2015-08-25 09:17:28,977 [56680333]   INFO - le.impl.ModuleManagerComponent - 0 module(s) loaded in 0 ms 
2015-08-25 09:17:29,002 [56680358]   INFO - i.vcs.changes.ChangeListWorker - default list not found when copy 
2015-08-25 09:17:29,002 [56680358]   INFO - i.vcs.changes.ChangeListWorker - default list not found when copy in original object too 
2015-08-25 09:17:29,412 [56680768]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:29,413 [56680769]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:29,413 [56680769]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:29,413 [56680769]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:29,413 [56680769]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:29,413 [56680769]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:29,413 [56680769]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:29,413 [56680769]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:31,891 [56683247]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:31,931 [56683287]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:31,931 [56683287]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:31,931 [56683287]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:31,931 [56683287]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:31,931 [56683287]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:31,931 [56683287]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:31,932 [56683288]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:31,932 [56683288]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:32,283 [56683639]   INFO - tartup.impl.StartupManagerImpl - C:\Users\bjruc_000\GoProjects\src\github.com\BoazJR\bug\.idea\misc.xml case-sensitivity: false 
2015-08-25 09:17:32,452 [56683808]   INFO - indexing.UnindexedFilesUpdater - Indexable files iterated in 16 ms 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:32,559 [56683915]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:32,638 [56683994]   INFO - indexing.UnindexedFilesUpdater - Unindexed files update canceled 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:32,710 [56684066]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:32,923 [56684279]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:33,054 [56684410]   INFO - tor.impl.FileEditorManagerImpl - Project opening took 4346 ms 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:33,258 [56684614]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:38,964 [56690320]   INFO - indexing.UnindexedFilesUpdater - Indexable files iterated in 6285 ms 
2015-08-25 09:17:38,964 [56690320]   INFO - indexing.UnindexedFilesUpdater - Unindexed files update started: 3077 files to update 
2015-08-25 09:17:53,044 [56704400]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:53,044 [56704400]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:17:53,044 [56704400]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:17:53,045 [56704401]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:18:01,043 [56712399]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:18:01,128 [56712484]   INFO - openapi.editor.impl.EditorImpl - Cache hits:20480, total requests:29060,file://C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/authTesting/registration_test.go 
2015-08-25 09:18:11,826 [56723182]   INFO - indexing.UnindexedFilesUpdater - Unindexed files update done in 32862 ms 
2015-08-25 09:18:11,942 [56723298]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/ssh/testdata 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/.git 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/golang.org/x/crypto/sha3/testdata 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/.idea 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/auth/.idea 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/farmapp/.idea 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/mux/.git 
2015-08-25 09:20:19,517 [56850873]   INFO - t.GoModuleLibrariesInitializer - Excluding part of GOPATH: C:/Users/bjruc_000/GoProjects/src/github.com/gorilla/context/.git 
2015-08-25 09:20:28,598 [56859954]   INFO - openapi.editor.impl.EditorImpl - Cache hits:4096, total requests:4957,file://C:/Users/bjruc_000/GoProjects/src/github.com/BoazJR/bug/main.go 
2015-08-25 09:32:29,518 [57580874]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 09:38:11,942 [57923298]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 09:52:29,533 [58780889]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 09:58:11,943 [59123299]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 10:12:29,533 [59980889]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 10:18:11,944 [60323300]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
2015-08-25 10:32:29,533 [61180889]   INFO - lij.tasks.impl.TaskManagerImpl - Updating issues cache (every 20 min) 
'''
dlsniper commented 9 years ago

@BoazJR if you could zip the whole directory and provide an approximate date / hour where this happened it would be easier to follow rather than using Github's unfortunate reporting system :D

ghost commented 9 years ago

I pasted the gif 21 hours ago, it's now 11 so sometime between 13:00- 14:00 8/24/2015 file link: http://dropcanvas.com/#5N7TPT0jeX8h97

ghost commented 8 years ago

I have the same exact problem. Latest Go stable, latest oracle java stable and latest intellij stable.

Please let me know if there is anything I can do to help.

dlsniper commented 8 years ago

@sirbluenotes please open a new issue and provide a way to replicate it as the current issue has been closed for a while and w/o a way to replicate it it's impossible to say what's going on. Thank you.