模块 org.redkale
程序包 org.redkale.util

注释类型 LogExcludeLevel


  • @Deprecated(since="2.8.0")
    @Documented
    @Target(TYPE)
    @Retention(RUNTIME)
    @Repeatable(LogExcludeLevels.class)
    public @interface LogExcludeLevel
    已过时。
    等于level日志级别且包含keys字符串的日志才会被排除
     @LogExcludeLevel(levels = {"FINEST"}, keys = {"SET username ="})
     public class UserRecord {
          public int userid;
          public String username = "";
     }
    
     这样当调用DataSource对UserRecord对象进行操作时,拼接的SQL语句含"SET username ="字样的都会在FINEST日志级别过滤掉
     

    详情见: https://redkale.org

    作者:
    zhangjx
    另请参阅:
    LogExcludeLevel
    • 必需元素概要

      所需元素 
      修饰符和类型 必需的元素 说明
      String[] keys
      已过时。
       
      String[] levels
      已过时。
       
    • 元素详细资料

      • levels

        String[] levels
        已过时。