Jump to content

Recommended Posts

Posted

When I try to run my server with a few mods using:

java -Xms1024M -Xmx2048M -jar forge-1.11.2-13.20.1.2454-universal.jar
pause

It gives me a bunch of errors and no logs are shown, in gui neither in command prompt

 

Errors:

2017-09-09 16:53:15,819 ERROR Error processing element Queue: CLASS_NOT_FOUND
2017-09-09 16:53:15,842 ERROR Unable to locate appender ServerGuiConsole for logger com.mojang
2017-09-09 16:53:15,844 ERROR Unable to locate appender ServerGuiConsole for logger
2017-09-09 16:53:15,844 ERROR Unable to locate appender ServerGuiConsole for logger net.minecraft
[16:53:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[16:53:15] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[16:53:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
2017-09-09 16:53:15,887 ERROR Error processing element TerminalConsole: CLASS_NOT_FOUND
2017-09-09 16:53:15,887 ERROR Error processing element TerminalConsole: CLASS_NOT_FOUND
2017-09-09 16:53:15,887 ERROR Error processing element Queue: CLASS_NOT_FOUND
2017-09-09 16:53:15,897 ERROR Unable to locate appender Console for logger com.mojang
2017-09-09 16:53:15,897 ERROR Unable to locate appender ServerGuiConsole for logger com.mojang
2017-09-09 16:53:15,898 ERROR Unable to locate appender FmlConsole for logger
2017-09-09 16:53:15,898 ERROR Unable to locate appender ServerGuiConsole for logger
2017-09-09 16:53:15,898 ERROR Unable to locate appender Console for logger net.minecraft
2017-09-09 16:53:15,898 ERROR Unable to locate appender ServerGuiConsole for logger net.minecraft
2017-09-09 16:53:15,963 ERROR Error processing element TerminalConsole: CLASS_NOT_FOUND
2017-09-09 16:53:15,963 ERROR Error processing element TerminalConsole: CLASS_NOT_FOUND
2017-09-09 16:53:15,964 ERROR Error processing element Queue: CLASS_NOT_FOUND
2017-09-09 16:53:15,970 ERROR Unable to locate appender Console for logger com.mojang
2017-09-09 16:53:15,971 ERROR Unable to locate appender ServerGuiConsole for logger com.mojang
2017-09-09 16:53:15,971 ERROR Unable to locate appender FmlConsole for logger
2017-09-09 16:53:15,971 ERROR Unable to locate appender ServerGuiConsole for logger
2017-09-09 16:53:15,972 ERROR Unable to locate appender Console for logger net.minecraft
2017-09-09 16:53:15,972 ERROR Unable to locate appender ServerGuiConsole for logger net.minecraft

I've tried running with nogui too and by double clicking the .jar file, but nothing changes.

Posted

Yep.

But logs exist. But are not outputed in the gui/cmdprompt. The latest.log and the fml-latest logs are created.

latest.log

  Reveal hidden contents

 

  • 1 year later...
Posted

Not that I want to necro this post but I am having the exact same problem.  All of a sudden out of the blue.  I get no console logging and get these errors instead:

 

2018-10-12 06:37:42,947 main ERROR Error processing element LoggerNamePatternSelector ([PatternLayout: null]): CLASS_NOT_FOUND
2018-10-12 06:37:42,947 main ERROR Error processing element TerminalConsole ([Appenders: null]): CLASS_NOT_FOUND
2018-10-12 06:37:42,947 main ERROR Error processing element LoggerNamePatternSelector ([PatternLayout: null]): CLASS_NOT_FOUND
2018-10-12 06:37:42,963 main ERROR Unable to locate appender "Console" for logger config "root"
2018-10-12 06:37:43,291 main ERROR Error processing element LoggerNamePatternSelector ([PatternLayout: null]): CLASS_NOT_FOUND
2018-10-12 06:37:43,291 main ERROR Error processing element TerminalConsole ([Appenders: null]): CLASS_NOT_FOUND
2018-10-12 06:37:43,291 main ERROR Error processing element LoggerNamePatternSelector ([PatternLayout: null]): CLASS_NOT_FOUND
2018-10-12 06:37:43,306 main ERROR Unable to locate appender "Console" for logger config "root"

 

  • Guest locked this topic
Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Please read the FAQ (https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/). It asks you to not post a reply to a thread with your own question in rule #2. Unfortunately I do not have any experience trying to run Java MC on an android device. Someone may have experience with it and be able to help, but I'm guessing that it's not officially supported, and your mileage may vary.  
    • I moved your post into its own topic (due to Rule #2 in the FAQ).  Please read the FAQ (https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/) as directed at the top of the support forum, and post logs as described there using a site like https://mclo.gs or similar, and post the link here.  
    • I'm having a similar problem. Optifine won't let me start the game and when i install Rubidium + Oculus, it tells me Flywheel requires Sodium 0.6.0. and that my current version of Sodium is 0.5.3 I don't have Flywheel or Sodium in my mods folder, I play on Forge and Sodium is for Fabric and Sodium 0.6.0 doesn't exist for Minecraft 1.20.1  
    • I have spent all morning trying to get stencils to work, and I can't seem to get any sort of response from the game? I have a basic transparent and white texture I want the shape of the cutout to be and then a texture that should be cut out, yet the texture draws fully no matter what I do. There was one old post that did it, however using  his code I have had zero luck.  This is my code so far, however its changed so many times... Please help me! poseStack.pushPose(); // Set up shader and blending RenderSystem.setShader(GameRenderer::getPositionTexShader); RenderSystem.enableBlend(); RenderSystem.defaultBlendFunc(); // Enable stencil test GL11.glEnable(GL11.GL_STENCIL_TEST); GL11.glClear(GL11.GL_STENCIL_BUFFER_BIT); // Draw portal shape to stencil buffer RenderSystem.stencilFunc(GL11.GL_ALWAYS, 1, 0xFF); RenderSystem.stencilOp(GL11.GL_KEEP, GL11.GL_KEEP, GL11.GL_REPLACE); RenderSystem.stencilMask(0xFF); RenderSystem.colorMask(false, false, false, false); RenderSystem.depthMask(false); guiGraphics.blit(maskTest,10,10,7,7,7,7); // Now draw portal texture through the stencil RenderSystem.stencilFunc(GL11.GL_EQUAL, 1, 0xFF); RenderSystem.stencilMask(0x00); RenderSystem.colorMask(true, true, true, true); RenderSystem.depthMask(true); guiGraphics.fill(0,0,30,30,Color.YELLOW.getRGB()); GL11.glDisable(GL11.GL_STENCIL_TEST); RenderSystem.disableBlend();  
    • { "parent": "wuntare:block/box" } This is a item model script, and it have not a model, idk. Then block is there, the model is there. But in hand is block with missing-texture and default block model, not custom. version: 1.21.5 forge: 55.0.21
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.