Added debug code
This commit is contained in:
parent
cf18b4344c
commit
760e8f63a2
11 changed files with 39 additions and 4 deletions
|
@ -1486,3 +1486,25 @@ user global configuration and to define the default location to store repositori
|
|||
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
|
||||
EGit might behave differently since they see different configuration options.
|
||||
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.
|
||||
!SESSION 2015-09-03 16:29:43.152 -----------------------------------------------
|
||||
eclipse.buildId=M20130204-1200
|
||||
java.version=1.8.0_45
|
||||
java.vendor=Oracle Corporation
|
||||
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=hu_HU
|
||||
Framework arguments: -product org.eclipse.epp.package.jee.product
|
||||
Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.jee.product
|
||||
|
||||
!ENTRY org.eclipse.egit.ui 2 0 2015-09-03 16:30:18.323
|
||||
!MESSAGE Warning: EGit couldn't detect the installation path "gitPrefix" of native Git. Hence EGit can't respect system level
|
||||
Git settings which might be configured in ${gitPrefix}/etc/gitconfig under the native Git installation directory.
|
||||
The most important of these settings is core.autocrlf. Git for Windows by default sets this parameter to true in
|
||||
this system level configuration. The Git installation location can be configured on the
|
||||
Team > Git > Configuration preference page's 'System Settings' tab.
|
||||
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.
|
||||
|
||||
!ENTRY org.eclipse.egit.ui 2 0 2015-09-03 16:30:18.372
|
||||
!MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
|
||||
user global configuration and to define the default location to store repositories: 'C:\Users\Norbi'. If this is
|
||||
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
|
||||
EGit might behave differently since they see different configuration options.
|
||||
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,18 +1,18 @@
|
|||
INDEX VERSION 1.126+D:\Z - Norbi cucca\0 Projektek\TheButtonMCAutoFlairProto\Spigot plugin\.metadata\.plugins\org.eclipse.jdt.core
|
||||
3045053200.index
|
||||
3656756579.index
|
||||
3089967703.index
|
||||
2674037006.index
|
||||
323251068.index
|
||||
355369697.index
|
||||
1934142626.index
|
||||
3716007315.index
|
||||
1934142626.index
|
||||
1045485630.index
|
||||
605290374.index
|
||||
533208796.index
|
||||
1337478678.index
|
||||
1528680760.index
|
||||
1737447423.index
|
||||
1467104569.index
|
||||
1737447423.index
|
||||
4187470955.index
|
||||
2535676096.index
|
||||
1787405673.index
|
||||
|
@ -21,5 +21,5 @@ INDEX VERSION 1.126+D:\Z - Norbi cucca\0 Projektek\TheButtonMCAutoFlairProto\Spi
|
|||
3954291735.index
|
||||
994834796.index
|
||||
3604769962.index
|
||||
3045053200.index
|
||||
1508644233.index
|
||||
3656756579.index
|
||||
|
|
|
@ -30,4 +30,5 @@
|
|||
<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1440957060040_27" label="Window Working Set" name="Aggregate for window 1440957060040"/>
|
||||
<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1441001761817_28" label="Window Working Set" name="Aggregate for window 1441001761817"/>
|
||||
<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1441037392127_29" label="Window Working Set" name="Aggregate for window 1441037392126"/>
|
||||
<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1441290612782_30" label="Window Working Set" name="Aggregate for window 1441290612782"/>
|
||||
</workingSetManager>
|
Binary file not shown.
Binary file not shown.
|
@ -85,6 +85,18 @@ public class PlayerListener implements Listener { // 2015.07.16.
|
|||
* File("plugins/essentials/userdata/"+id+".yml").exists());
|
||||
*/
|
||||
|
||||
SendForDebug("Folder plugins exists: "
|
||||
+ new File("plugins").isDirectory());
|
||||
SendForDebug("Folder plugins/essentials exists: "
|
||||
+ new File("plugins/essentials").isDirectory());
|
||||
SendForDebug("Folder plugins/essentials/userdata exists: "
|
||||
+ new File("plugins/essentials/userdata").isDirectory());
|
||||
SendForDebug("Folder plugins/essentials/userdata/"
|
||||
+ id
|
||||
+ ".yml exists: "
|
||||
+ new File("plugins/essentials/userdata/" + id + ".yml")
|
||||
.exists());
|
||||
|
||||
mp.RPMode = true; // 2015.08.25.
|
||||
|
||||
if (p.getName().equals("FigyTuna") && Commands.PluginUpdated)
|
||||
|
|
Loading…
Reference in a new issue