comment out debug messages shown on plugin startup, was a bit too spammy
This commit is contained in:
		@@ -221,7 +221,7 @@ public class EM {
 | 
				
			|||||||
				Follower follower = gson.fromJson(DiscUtil.read(jsonFile), Follower.class);
 | 
									Follower follower = gson.fromJson(DiscUtil.read(jsonFile), Follower.class);
 | 
				
			||||||
				follower.id = name;
 | 
									follower.id = name;
 | 
				
			||||||
				followers.put(follower.id, follower);
 | 
									followers.put(follower.id, follower);
 | 
				
			||||||
				Log.debug("loaded follower "+name);
 | 
									//Log.debug("loaded follower "+name);
 | 
				
			||||||
			} catch (Exception e) {
 | 
								} catch (Exception e) {
 | 
				
			||||||
				e.printStackTrace();
 | 
									e.printStackTrace();
 | 
				
			||||||
				Log.warn("failed to load follower "+name);
 | 
									Log.warn("failed to load follower "+name);
 | 
				
			||||||
@@ -317,7 +317,7 @@ public class EM {
 | 
				
			|||||||
				Faction faction = gson.fromJson(DiscUtil.read(jsonFile), Faction.class);
 | 
									Faction faction = gson.fromJson(DiscUtil.read(jsonFile), Faction.class);
 | 
				
			||||||
				faction.id = id;
 | 
									faction.id = id;
 | 
				
			||||||
				factions.put(faction.id, faction);
 | 
									factions.put(faction.id, faction);
 | 
				
			||||||
				Log.debug("loaded faction "+id);
 | 
									//Log.debug("loaded faction "+id);
 | 
				
			||||||
			} catch (Exception e) {
 | 
								} catch (Exception e) {
 | 
				
			||||||
				e.printStackTrace();
 | 
									e.printStackTrace();
 | 
				
			||||||
				Log.warn("Failed to load faction "+id);
 | 
									Log.warn("Failed to load faction "+id);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user