File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed 
NeoForge/src/main/java/mezz/jei/neoforge/startup Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ private <T extends Event> void onEvent(T event) {
109109		}
110110		if  (currentConnection  == null ) {
111111			// No connection => Disregard, this probably an event being fired on the integrated server thread 
112- 			LOGGER .info ("JEI StartEventObserver received {} too early, ignoring" , event .getClass ());
112+ 			LOGGER .debug ("JEI StartEventObserver received {} too early, ignoring" , event .getClass ());
113113			return ;
114114		}
115115		logReceivedEvent (event );
@@ -151,6 +151,7 @@ private static Connection getCurrentConnection() {
151151
152152	@ Override 
153153	public  void  onResourceManagerReload (ResourceManager  pResourceManager ) {
154+ 		LOGGER .debug ("JEI StartEventObserver detected resource manager reload." );
154155		restart ();
155156	}
156157
@@ -163,7 +164,7 @@ private void restart() {
163164	}
164165
165166	private  void  transitionState (State  newState ) {
166- 		LOGGER .info ("JEI StartEventObserver transitioning state from {} to {}" , this .state , newState );
167+ 		LOGGER .debug ("JEI StartEventObserver transitioning state from {} to {}" , this .state , newState );
167168
168169		switch  (newState ) {
169170			case  LISTENING  -> {
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments