mirror of
				https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
				synced 2025-11-04 12:03:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			429 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import os
 | 
						|
import logging
 | 
						|
 | 
						|
 | 
						|
def setup_logging(loglevel):
 | 
						|
    if loglevel is None:
 | 
						|
        loglevel = os.environ.get("SD_WEBUI_LOG_LEVEL")
 | 
						|
 | 
						|
    if loglevel:
 | 
						|
        log_level = getattr(logging, loglevel.upper(), None) or logging.INFO
 | 
						|
        logging.basicConfig(
 | 
						|
            level=log_level,
 | 
						|
            format='%(asctime)s %(levelname)s [%(name)s] %(message)s',
 | 
						|
            datefmt='%Y-%m-%d %H:%M:%S',
 | 
						|
        )
 | 
						|
 |