100+ results for 'minecraft logger.getlogger'
Not the results you expected?
Chat_PermissionsExC.java (https://gitlab.com/MineYourMind/Vault) Java · 393 lines
LineRenderer.java (https://bitbucket.org/michael_rodrigues/mcpatcher.git) Java · 173 lines
Economy_BOSE7.java (https://gitlab.com/MineYourMind/Vault) Java · 305 lines
PostHttp.java (https://bitbucket.org/vkorolik/twoleanfour-client-autotool.git) Java · 107 lines
Economy_eWallet.java (https://gitlab.com/MineYourMind/Vault) Java · 253 lines
Economy_TAEcon.java (https://gitlab.com/MineYourMind/Vault) Java · 259 lines
BukkitPainting.java (https://gitlab.com/Skull3x/WorldEdit) Java · 110 lines
Fuels.java (https://gitlab.com/MineYourMind/MineTweaker3) Java · 375 lines
21 import minetweaker.api.liquid.ILiquidStack;
22 import minetweaker.api.minecraft.MineTweakerMC;
23 import net.minecraftforge.fluids.Fluid;
24 import net.minecraftforge.fluids.FluidStack;
25 import stanhebben.zenscript.annotations.ZenClass;
119 } catch (InstantiationException ex) {
120 Logger.getLogger(Fuels.class.getName()).log(Level.SEVERE, null, ex);
121 } catch (IllegalAccessException ex) {
122 Logger.getLogger(Fuels.class.getName()).log(Level.SEVERE, null, ex);
123 } catch (IllegalArgumentException ex) {
124 Logger.getLogger(Fuels.class.getName()).log(Level.SEVERE, null, ex);
125 } catch (InvocationTargetException ex) {
Colorizer.java (https://bitbucket.org/Freso/mcpatcher.git) Java · 211 lines
MobRandomizer.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 204 lines
6 import com.prupe.mcpatcher.mal.biome.BiomeAPI;
7 import net.minecraft.src.Entity;
8 import net.minecraft.src.EntityLivingBase;
9 import net.minecraft.src.NBTTagCompound;
10 import net.minecraft.src.ResourceLocation;
19 public class MobRandomizer {
20 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.RANDOM_MOBS);
21 private static final LinkedHashMap<String, ResourceLocation> cache = new LinkedHashMap<String, ResourceLocation>();
Chat_GroupManager.java (https://gitlab.com/MineYourMind/Vault) Java · 367 lines
Main.java (https://bitbucket.org/pluginmakers/mysqlilogin.git) Java · 213 lines
SaveHandler.java (https://bitbucket.org/vkorolik/twoleanfour-client-autotool.git) Java · 261 lines
5 package net.minecraft.src;
11 // Referenced classes of package net.minecraft.src:
12 // IPlayerFileData, ISaveHandler, MinecraftException, CompressedStreamTools,
20 private static final Logger field_1003_a = Logger.getLogger("Minecraft");
21 private final File field_22099_b;
78 {
79 throw new MinecraftException("The save is being accessed from another location, aborting");
80 }
88 {
89 throw new MinecraftException("Failed to check session lock, aborting");
90 }
ft.java (https://github.com/kpfile/Minecraft-Server-Mod.git) Java · 358 lines
9 import java.util.logging.Logger;
10 import net.minecraft.server.MinecraftServer;
14 public static Logger a = Logger.getLogger("Minecraft");
15 public List b = new ArrayList();
16 private MinecraftServer c;
17 private hg d;
27 public ft(MinecraftServer paramMinecraftServer) {
28 this.c = paramMinecraftServer;
29 this.i = paramMinecraftServer.a("banned-players.txt");
30 this.j = paramMinecraftServer.a("banned-ips.txt");
FlatFilePermissionsResolver.java (https://gitlab.com/Skull3x/WorldEdit) Java · 248 lines
WorldGuardCommands.java (https://github.com/talmor/worldguard.git) Java · 147 lines
31 import com.sk89q.minecraft.util.commands.Command;
32 import com.sk89q.minecraft.util.commands.CommandContext;
33 import com.sk89q.minecraft.util.commands.CommandException;
34 import com.sk89q.minecraft.util.commands.CommandPermissions;
63 LoggerToChatHandler handler = null;
64 Logger minecraftLogger = null;
68 handler.setLevel(Level.ALL);
69 minecraftLogger = Logger.getLogger("Minecraft");
70 minecraftLogger.addHandler(handler);
82 } finally {
83 if (minecraftLogger != null) {
84 minecraftLogger.removeHandler(handler);
Economy_GoldenChestEconomy.java (https://gitlab.com/MineYourMind/Vault) Java · 247 lines
EssentialsConf.java (https://github.com/BodyshotzVG/Essentials.git) Java · 277 lines
Economy_DigiCoin.java (https://gitlab.com/MineYourMind/Vault) Java · 251 lines
Economy_Essentials.java (https://gitlab.com/MineYourMind/Vault) Java · 318 lines
TravelGatesCommandExecutor.java (https://github.com/Ghomerr/TravelGates.git) Java · 724 lines
Chat_mChatSuite.java (https://gitlab.com/MineYourMind/Vault) Java · 284 lines
PromotionCommands.java (https://gitlab.com/Slind/PermissionsEx) Java · 178 lines
109 sender.sendMessage("User " + user.getName() + " promoted to " + targetGroup.getName() + " group");
110 Logger.getLogger("Minecraft").info("User " + user.getName() + " has been promoted to " + targetGroup.getName() + " group on " + targetGroup.getRankLadder() + " ladder by " + promoterName);
111 } catch (RankingException e) {
112 sender.sendMessage(ChatColor.RED + "Promotion error: " + e.getMessage());
113 Logger.getLogger("Minecraft").severe("Ranking Error (" + promoterName + " > " + e.getTarget().getName() + "): " + e.getMessage());
114 }
153 sender.sendMessage("User " + user.getName() + " demoted to " + targetGroup.getName() + " group");
154 Logger.getLogger("Minecraft").info("User " + user.getName() + " has been demoted to " + targetGroup.getName() + " group on " + targetGroup.getRankLadder() + " ladder by " + demoterName);
155 } catch (RankingException e) {
156 sender.sendMessage(ChatColor.RED + "Demotion error: " + e.getMessage());
157 Logger.getLogger("Minecraft").severe("Ranking Error (" + demoterName + " demotes " + e.getTarget().getName() + "): " + e.getMessage());
158 }
GSBlockListener.java (https://github.com/smickles/GoldStandard.git) Java · 151 lines
Chat_bPermissions2.java (https://gitlab.com/MineYourMind/Vault) Java · 264 lines
ProtectedBlockJDBC.java (https://github.com/BodyshotzVG/Essentials.git) Java · 426 lines
SpleefData.java (https://github.com/mrsheen/minecraft-hey0-plugins.git) Java · 296 lines
AAHelper.java (https://bitbucket.org/michael_rodrigues/mcpatcher.git) Java · 135 lines
5 import com.prupe.mcpatcher.MCPatcherUtils;
6 import net.minecraft.src.Resource;
7 import net.minecraft.src.ResourceLocation;
8 import net.minecraft.src.SimpleResource;
9 import net.minecraft.src.TextureAtlasSprite;
15 public class AAHelper {
16 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.MIPMAP);
PropertyHandler.java (https://github.com/Travo97/Permissions.git) Java · 212 lines
FastSwitch.java (https://github.com/Lynx-/FastSwitch.git) Java · 362 lines
Economy_MineConomy.java (https://gitlab.com/MineYourMind/Vault) Java · 272 lines
Chat_iChat.java (https://gitlab.com/MineYourMind/Vault) Java · 273 lines
Economy_CurrencyCore.java (https://gitlab.com/MineYourMind/Vault) Java · 304 lines
AcceptRulesMain.java (https://github.com/rigor789/AcceptRules.git) Java · 126 lines
MinersHelmet.java (https://github.com/mrsheen/minecraft-hey0-plugins.git) Java · 174 lines
PreciousStones.java (https://github.com/FreezyExp/PreciousStones.git) Java · 370 lines
ProfessionsPlus.java (https://github.com/aRt3m1s/ProfessionsPlus.git) Java · 107 lines
CTMUtils.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 226 lines
mcPermissions.java (https://github.com/krinsdeath/mcMMO.git) Java · 315 lines
PluginLoader.java (https://github.com/kpfile/Minecraft-Server-Mod.git) Java · 274 lines
13 import java.util.logging.Logger;
14 import net.minecraft.server.MinecraftServer;
33 }
34 private static final Logger log = Logger.getLogger("Minecraft");
35 private static final Object lock = new Object();
43 */
44 public PluginLoader(MinecraftServer server) {
45 properties = new PropertiesFile("server.properties");
TessellatorUtils.java (https://bitbucket.org/michael_rodrigues/mcpatcher.git) Java · 165 lines
Loic.java (https://github.com/LordLladar/Low-Orbit-Ion-Cannon.git) Java · 231 lines
NetPacketThread.java (https://github.com/Clintonio/NetAPI.git) Java · 327 lines
Teleport.java (https://github.com/BodyshotzVG/Essentials.git) Java · 271 lines
SignBlockListener.java (https://github.com/BodyshotzVG/Essentials.git) Java · 259 lines
ReparametrisingInterpolation.java (https://gitlab.com/Skull3x/WorldEdit) Java · 160 lines
SnapshotUtilCommands.java (https://gitlab.com/Skull3x/WorldEdit) Java · 154 lines
1 /*
2 * WorldEdit, a Minecraft world manipulation toolkit
3 * Copyright (C) sk89q <http://www.sk89q.com>
22 import com.sk89q.minecraft.util.commands.Command;
23 import com.sk89q.minecraft.util.commands.CommandContext;
24 import com.sk89q.minecraft.util.commands.CommandPermissions;
25 import com.sk89q.minecraft.util.commands.Logging;
40 import static com.sk89q.minecraft.util.commands.Logging.LogMode.REGION;
44 private static final Logger logger = Logger.getLogger("Minecraft.WorldEdit");
Chat_rscPermissions.java (https://gitlab.com/MineYourMind/Vault) Java · 214 lines
DataSource.java (https://github.com/mrsheen/Minecraft-Server-Mod.git) Java · 519 lines
8 import java.util.logging.Logger;
9 import net.minecraft.server.MinecraftServer;
17 protected static final Logger log = Logger.getLogger("Minecraft");
18 protected List<Group> groups = new ArrayList<Group>();
24 protected Map<String, Integer> items = new HashMap<String, Integer>();
25 protected MinecraftServer server;
26 protected final Object groupLock = new Object(), kitLock = new Object(), banLock = new Object();
Economy_SDFEconomy.java (https://gitlab.com/MineYourMind/Vault) Java · 229 lines
Economy_EconXP.java (https://gitlab.com/MineYourMind/Vault) Java · 276 lines
SaveHandler.java (https://bitbucket.org/kingbowser/stormclient.git) Java · 219 lines
5 package net.minecraft.src;
11 // Referenced classes of package net.minecraft.src:
12 // ISaveHandler, MinecraftException, WorldProviderHell, ChunkLoader,
20 private static final Logger logger = Logger.getLogger("Minecraft");
21 private final File saveDirectory;
78 {
79 throw new MinecraftException("The save is being accessed from another location, aborting");
80 }
88 {
89 throw new MinecraftException("Failed to check session lock, aborting");
90 }
MobRuleList.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 190 lines
FlatFileKitsManager.java (https://github.com/Noobidoo/commandbook.git) Java · 163 lines
FGFSConnection.java (https://bitbucket.org/muraleen/virtual-star-alliance-autopirep-and-acars-system-flightgear.git) Java · 330 lines
DebugPasteCommand.java (https://gitlab.com/ixilon/nukkit) Java · 90 lines
50 b.append("version.nukkit: ").append(server.getNukkitVersion()).append('\n');
51 b.append("version.minecraft: ").append(server.getVersion()).append('\n');
52 b.append("version.protocol: ").append(ProtocolInfo.CURRENT_PROTOCOL).append('\n');
83 } catch (IOException e) {
84 MainLogger.getLogger().logException(e);
85 }
Chat_bPermissions.java (https://gitlab.com/MineYourMind/Vault) Java · 263 lines
EssentialsGeoIPPlayerListener.java (https://github.com/BodyshotzVG/Essentials.git) Java · 178 lines
DroneDestructor.java (https://github.com/ppitonak/arquillian-extension-drone.git) Java · 126 lines
ShallowObjectReport.java (https://gitlab.com/igserfurtmcschulserver/CustomWorldGuard) Java · 58 lines
WrappedSpawnManager.java (https://github.com/Noobidoo/commandbook.git) Java · 98 lines
EssentialsXMPP.java (https://github.com/BodyshotzVG/Essentials.git) Java · 142 lines
Economy.java (https://github.com/BodyshotzVG/Essentials.git) Java · 293 lines
Economy_GoldIsMoney2.java (https://gitlab.com/MineYourMind/Vault) Java · 316 lines
LineagePlugin.java (https://github.com/adambratt/Lineage.git) Java · 148 lines
Chat_zPermissions.java (https://gitlab.com/MineYourMind/Vault) Java · 245 lines
PromotionCommands.java (https://github.com/NuclearW/PermissionsEx.git) Java · 175 lines
108 sender.sendMessage("User " + user.getName() + " promoted to " + targetGroup.getName() + " group");
109 Logger.getLogger("Minecraft").info("User " + user.getName() + " has been promoted to " + targetGroup.getName() + " group on " + targetGroup.getRankLadder() + " ladder by " + promoterName);
110 } catch (RankingException e) {
111 Logger.getLogger("Minecraft").severe("Ranking Error (" + promoterName + " > " + e.getTarget().getName() + "): " + e.getMessage());
112 }
151 sender.sendMessage("User " + user.getName() + " demoted to " + targetGroup.getName() + " group");
152 Logger.getLogger("Minecraft").info("User " + user.getName() + " has been demoted to " + targetGroup.getName() + " group on " + targetGroup.getRankLadder() + " ladder by " + demoterName);
153 } catch (RankingException e) {
154 Logger.getLogger("Minecraft").severe("Ranking Error (" + demoterName + " demotes " + e.getTarget().getName() + "): " + e.getMessage());
155 }
EJBClientReconnectionTestCase.java (https://bitbucket.org/cprenzberg/wildfly.git) Java · 151 lines
Refinery.java (https://gitlab.com/MineYourMind/MineTweaker3) Java · 202 lines
23 import minetweaker.api.liquid.ILiquidStack;
24 import minetweaker.api.minecraft.MineTweakerMC;
25 import net.minecraftforge.fluids.Fluid;
26 import net.minecraftforge.fluids.FluidStack;
27 import stanhebben.zenscript.annotations.Optional;
46 } catch (NoSuchMethodException ex) {
47 Logger.getLogger(Refinery.class.getName()).log(Level.SEVERE, null, ex);
48 } catch (SecurityException ex) {
49 Logger.getLogger(Refinery.class.getName()).log(Level.SEVERE, null, ex);
50 }
56 } catch (NoSuchFieldException ex) {
57 Logger.getLogger(Refinery.class.getName()).log(Level.SEVERE, null, ex);
58 } catch (SecurityException ex) {
Leaderboard.java (https://github.com/krinsdeath/mcMMO.git) Java · 245 lines
MobRuleList.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 189 lines
Spleef.java (https://github.com/mrsheen/minecraft-hey0-plugins.git) Java · 140 lines
Colorizer.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 168 lines
AlphaChestPlugin.java (https://github.com/talmor/AlphaChest-for-Canary.git) Java · 126 lines
DataSource.java (https://github.com/kpfile/Minecraft-Server-Mod.git) Java · 391 lines
6 import java.util.logging.Logger;
7 import net.minecraft.server.MinecraftServer;
15 protected static final Logger log = Logger.getLogger("Minecraft");
16 protected List<User> users;
23 protected Map<String, Integer> items;
24 protected MinecraftServer server;
25 protected final Object userLock = new Object(), groupLock = new Object(), kitLock = new Object();
Log.java (https://github.com/dredhorse/MessageChangerLite.git) Java · 297 lines
64 *
65 * @param loggerName should be "Minecraft"
66 * @param pluginName the pluginname as string
128 *
129 * @param loggerName should be "Minecraft"
130 * @param pluginName the name of the plugin
132 private Log(String loggerName, String pluginName) {
133 this(Logger.getLogger(loggerName), pluginName, "");
134 }
143 private Log(String pluginName) {
144 this("Minecraft", pluginName);
145 }
150 *
151 * @param logger Logger object of Minecraft
152 * @param pluginName the name of the plugin
Mob.java (https://github.com/BodyshotzVG/Essentials.git) Java · 105 lines
LauncherUtils.java (https://gitlab.com/Slind/skmclauncher) Java · 213 lines
FakeServer.java (https://github.com/speedycuban/Essentials.git) Java · 448 lines
WaypointPlugin.java (https://github.com/mrsheen/minecraft-hey0-plugins.git) Java · 368 lines
17 {
18 private static Logger a = Logger.getLogger("Minecraft");
19 private Dictionary<String, User> users = new Hashtable<String, User>();
36 } catch (NumberFormatException e) {
37 Logger.getLogger("Minecraft").log(Level.SEVERE, "Exception parsing waypoint", e);
38 }
48 } catch (NumberFormatException e) {
49 Logger.getLogger("Minecraft").log(Level.SEVERE, "Exception parsing waypoint", e);
50 }
Economy_McMoney.java (https://gitlab.com/MineYourMind/Vault) Java · 247 lines
MessageCommands.java (https://github.com/arnie231/commandbook.git) Java · 179 lines
30 import com.sk89q.commandbook.events.SharedMessageEvent;
31 import com.sk89q.minecraft.util.commands.Command;
32 import com.sk89q.minecraft.util.commands.CommandContext;
33 import com.sk89q.minecraft.util.commands.CommandException;
34 import com.sk89q.minecraft.util.commands.CommandPermissions;
38 protected static final Logger logger = Logger.getLogger("Minecraft.CommandBook");
aOP.java (https://bitbucket.org/shinji257/aop.git) Java · 86 lines
FileHandler.java (https://github.com/wing7777/dynmap.git) Java · 121 lines
User.java (https://github.com/zml2008/commandhelper.git) Java · 100 lines
BlockBlocker.java (https://bitbucket.org/insanj/blockblocker.git) Java · 103 lines
Chat_mChat.java (https://gitlab.com/MineYourMind/Vault) Java · 250 lines
EnchantmentList.java (https://bitbucket.org/michael_rodrigues/mcpatcher.git) Java · 175 lines
AndryPlugin.java (https://bitbucket.org/andriii25/andryplugin.git) Java · 142 lines
BBLogging.java (https://github.com/gnftoxic/BigBrother.git) Java · 110 lines
FactoryFurnace.java (https://github.com/The414s/FactoryFurnace.git) Java · 214 lines
TexturePackChangeHandler.java (https://bitbucket.org/michael_rodrigues/mcpatcher.git) Java · 177 lines
3 import net.minecraft.client.Minecraft;
4 import net.minecraft.src.*;
8 abstract public class TexturePackChangeHandler {
9 private static final MCLogger logger = MCLogger.getLogger("Texture Pack");
48 public static void scheduleTexturePackRefresh() {
49 MCPatcherUtils.getMinecraft().scheduleTexturePackRefresh();
50 }
53 if (handler != null) {
54 if (Minecraft.getInstance().getResourceManager() != null) {
55 try {
127 TextureManager textureManager = MCPatcherUtils.getMinecraft().getTextureManager();
128 if (textureManager != null) {
RootLocationManager.java (https://github.com/Noobidoo/commandbook.git) Java · 120 lines
HeyRune.java (https://github.com/Raphfrk/hey0-plugins.git) Java · 209 lines
BorderedTexture.java (https://bitbucket.org/prupe/mcpatcher.git) Java · 137 lines
SendMessageHandler.java (https://github.com/wing7777/dynmap.git) Java · 119 lines
SaveHandler.java (https://github.com/Jackswalloms/Myst-And-Beyond.git) Java · 212 lines
5 package net.minecraft.src;
11 // Referenced classes of package net.minecraft.src:
12 // ISaveHandler, MinecraftException, WorldProviderHell, ChunkLoader,
70 {
71 throw new MinecraftException("The save is being accessed from another location, aborting");
72 }
80 {
81 throw new MinecraftException("Failed to check session lock, aborting");
82 }
206 private static final Logger logger = Logger.getLogger("Minecraft");
207 private final File saveDirectory;
LightSwitch.java (https://github.com/SquallSeeD31/craftbook.git) Java · 164 lines
TileLoader.java (https://bitbucket.org/kingbowser/hysteria-spoutcraft.git) Java · 197 lines
14 import java.util.Map;
15 import net.minecraft.src.Icon;
16 import net.minecraft.src.StitchHolder;
17 import net.minecraft.src.Stitcher;
18 import net.minecraft.src.Texture;
19 import net.minecraft.src.TextureManager;
20 import net.minecraft.src.TextureMap;
22 public class TileLoader {
23 private static final MCLogger logger = MCLogger.getLogger("Connected Textures", "CTM");
24 private static final boolean debugTextures = Config.getBoolean("Connected Textures", "debugTextures", false);
TreeOctopus.java (https://bitbucket.org/insanj/treeoctopus.git) Java · 122 lines
Lightmap.java (https://bitbucket.org/Freso/mcpatcher.git) Java · 138 lines
6 import com.prupe.mcpatcher.TexturePackAPI;
7 import net.minecraft.src.EntityRenderer;
8 import net.minecraft.src.ResourceLocation;
9 import net.minecraft.src.World;
14 public final class Lightmap {
15 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
78 float nightVisionStrength = renderer.getNightVisionStrength(partialTick);
79 float gamma = Colorizer.clamp(MCPatcherUtils.getMinecraft().gameSettings.gammaSetting);
80 for (int i = 0; i < LIGHTMAP_SIZE; i++) {
SellItems.java (https://github.com/darkdiplomat/iExchange.git) Java · 242 lines
Lightmap.java (https://bitbucket.org/SevenBits/mcpatcher.git) Java · 139 lines
6 import com.prupe.mcpatcher.TexturePackAPI;
7 import net.minecraft.client.Minecraft;
8 import net.minecraft.src.EntityRenderer;
9 import net.minecraft.src.ResourceLocation;
10 import net.minecraft.src.World;
15 public final class Lightmap {
16 private static final MCLogger logger = MCLogger.getLogger(MCPatcherUtils.CUSTOM_COLORS);
79 float nightVisionStrength = renderer.getNightVisionStrength(partialTick);
80 float gamma = Colorizer.clamp(Minecraft.getInstance().gameSettings.gammaSetting);
81 for (int i = 0; i < LIGHTMAP_SIZE; i++) {
MessageCommands.java (https://github.com/Noobidoo/commandbook.git) Java · 183 lines
30 import com.sk89q.commandbook.events.SharedMessageEvent;
31 import com.sk89q.minecraft.util.commands.Command;
32 import com.sk89q.minecraft.util.commands.CommandContext;
33 import com.sk89q.minecraft.util.commands.CommandException;
34 import com.sk89q.minecraft.util.commands.CommandPermissions;
38 protected static final Logger logger = Logger.getLogger("Minecraft.CommandBook");
58 Logger.getLogger("Minecraft").info("<" + name + ">: " + msg);
89 Logger.getLogger("Minecraft").info("<" + name + ">: " + msg);