logback-spring.xml配置文件模板


logback-spring.xml模板

<?xml version="1.0" encoding="UTF-8"?>

    community
    
    
    
    

    
    
        ${LOG_PATH}/${APPDIR}/log_error.log
        
        
            ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log
            
            
                5MB
            
            
            30
        
        
        true
        
        
            %d %level [%thread] %logger{10} [%file:%line] %msg%n
            utf-8
        
        
        
            error
            ACCEPT
            DENY
        
    

    
    
        ${LOG_PATH}/${APPDIR}/log_warn.log
        
            ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log
            
                5MB
            
            30
        
        true
        
            %d %level [%thread] %logger{10} [%file:%line] %msg%n
            utf-8
        
        
            warn
            ACCEPT
            DENY
        
    

    
    
        ${LOG_PATH}/${APPDIR}/log_info.log
        
            ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log
            
                5MB
            
            30
        
        true
        
            %d %level [%thread] %logger{10} [%file:%line] %msg%n
            utf-8
        
        
            info
            ACCEPT
            DENY
        
    

    
    
        
            %d %level [%thread] %logger{10} [%file:%line] %msg%n
            utf-8
        
        
            debug