Closed pr4xt3roy closed 10 years ago
This issue has happened before when someone uses a custom logger, are you doing that?
@NavidK0 Maybe to help with situations like this Carbon could print a line containing JVM startup parameters when it catches an exception injecting?
Yes, I was using a custom logger. Here's my config:
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN" packages="net.minecraft,com.mojang">
<Appenders>
<Console name="WINDOWS_COMPAT" target="SYSTEM_OUT"></Console>
<Queue name="TerminalConsole">
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} [%level] %msg%n" />
</Queue>
<RandomAccessFile name="File" fileName="server.log">
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} [%level] %msg%n" />
</RandomAccessFile>
</Appenders>
<Loggers>
<Root level="info">
<filters>
<MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
</filters>
<AppenderRef ref="WINDOWS_COMPAT"/>
<AppenderRef ref="File"/>
<AppenderRef ref="TerminalConsole"/>
</Root>
</Loggers>
</Configuration>
I turned that off and now its working fine. Thank you :)
Hello,
I am trying to install Carbon for the first time.
When I start the server I get two Exceptions as warnings and then the server stops.
The two Exceptions I get is:
And then I get:
Java: Oracle Sun 1.7.0_71-b14 Spigot: git-Spigot-1.7.9-R0.2-207-g03373bb (MC: 1.7.10) (Patched with spigot-20141001a.bps) ProtocolLib: v3.6.0-SNAPSHOT (Spigot special version) Carbon: 1.7 OS: Suse SLES 11
List of plugins: WorldBorder v1.7.8, GroupManager v2.0 (Phoenix), WorldEdit v5.6.2, SimpleSignEdit v2.1, Vault v1.4.1-b436, TreeAssist v5.1, WorldGuard v5.9, SimpleTitles v0.2, TakeaNumber v0.7, CoreProtect v2.0.9, CommandHelper v3.3.1, RedstoneClockDetector v0.2.5, ProtocolLib v3.6.0-SNAPSHOT, GriefPrevention v8.6, IcePvPControl v3.1.1, Herochat v5.6.6-b214, Essentials vPre2.14.1.3, HyperConomy v0.974.3, Trade v0.5.5b, CommandSigns v1.9.3.1, NoCheatPlus v3.11.2-SNAPSHOT-sMD5NET-b747, VanishNoPacket v3.19.1, MCBans v4.21
I even tried without any other plugins except ProtocolLib and Carbon and I still get those same errors and a shutdown. Full logs of that attempt available at http://pastie.org/9683070
When I remove Carbon, the server starts and stay running.
Any help would be greatly appreciated.
Thank you.