当前位置: 首页>>代码示例>>Java>>正文


Java LogRecord.getCategory方法代码示例

本文整理汇总了Java中org.apache.log4j.lf5.LogRecord.getCategory方法的典型用法代码示例。如果您正苦于以下问题:Java LogRecord.getCategory方法的具体用法?Java LogRecord.getCategory怎么用?Java LogRecord.getCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.log4j.lf5.LogRecord的用法示例。


在下文中一共展示了LogRecord.getCategory方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addLogRecord

import org.apache.log4j.lf5.LogRecord; //导入方法依赖的package包/类
public void addLogRecord(LogRecord lr) {
  CategoryPath path = new CategoryPath(lr.getCategory());
  addCategory(path); // create category path if it is new
  CategoryNode node = getCategoryNode(path);
  node.addRecord(); // update category node
  if (_renderFatal && lr.isFatal()) {
    TreeNode[] nodes = getPathToRoot(node);
    int len = nodes.length;
    CategoryNode parent;

    // i = 0 gives root node
    // skip node and root, loop through "parents" in between
    for (int i = 1; i < len - 1; i++) {
      parent = (CategoryNode) nodes[i];
      parent.setHasFatalChildren(true);
      nodeChanged(parent);
    }
    node.setHasFatalRecords(true);
    nodeChanged(node);
  }
}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:22,代码来源:CategoryExplorerModel.java

示例2: createNDCLogRecordFilter

import org.apache.log4j.lf5.LogRecord; //导入方法依赖的package包/类
protected LogRecordFilter createNDCLogRecordFilter(String text) {
  _NDCTextFilter = text;
  LogRecordFilter result = new LogRecordFilter() {
    public boolean passes(LogRecord record) {
      String NDC = record.getNDC();
      CategoryPath path = new CategoryPath(record.getCategory());
      if (NDC == null || _NDCTextFilter == null) {
        return false;
      } else if (NDC.toLowerCase().indexOf(_NDCTextFilter.toLowerCase()) == -1) {
        return false;
      } else {
        return getMenuItem(record.getLevel()).isSelected() &&
            _categoryExplorerTree.getExplorerModel().isCategoryPathActive(path);
      }
    }
  };

  return result;
}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:20,代码来源:LogBrokerMonitor.java

示例3: getColumn

import org.apache.log4j.lf5.LogRecord; //导入方法依赖的package包/类
protected Object getColumn(int col, LogRecord lr) {
  if (lr == null) {
    return "NULL Column";
  }
  String date = new Date(lr.getMillis()).toString();
  switch (col) {
    case 0:
      return date + " (" + lr.getMillis() + ")";
    case 1:
      return lr.getThreadDescription();
    case 2:
      return new Long(lr.getSequenceNumber());
    case 3:
      return lr.getLevel();
    case 4:
      return lr.getNDC();
    case 5:
      return lr.getCategory();
    case 6:
      return lr.getMessage();
    case 7:
      return lr.getLocation();
    case 8:
      return lr.getThrownStackTrace();
    default:
      String message = "The column number " + col + "must be between 0 and 8";
      throw new IllegalArgumentException(message);
  }
}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:30,代码来源:FilteredLogTableModel.java

示例4: createLogRecordFilter

import org.apache.log4j.lf5.LogRecord; //导入方法依赖的package包/类
protected LogRecordFilter createLogRecordFilter() {
  LogRecordFilter result = new LogRecordFilter() {
    public boolean passes(LogRecord record) {
      CategoryPath path = new CategoryPath(record.getCategory());
      return
          getMenuItem(record.getLevel()).isSelected() &&
          _categoryExplorerTree.getExplorerModel().isCategoryPathActive(path);
    }
  };
  return result;
}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:12,代码来源:LogBrokerMonitor.java

示例5: passes

import org.apache.log4j.lf5.LogRecord; //导入方法依赖的package包/类
/**
 * @return true if the CategoryExplorer model specified at construction
 * is accepting the category of the specified LogRecord.  Has a side-effect
 * of adding the CategoryPath of the LogRecord to the explorer model
 * if the CategoryPath is new.
 */
public boolean passes(LogRecord record) {
  CategoryPath path = new CategoryPath(record.getCategory());
  return _model.isCategoryPathActive(path);
}
 
开发者ID:cacheonix,项目名称:cacheonix-core,代码行数:11,代码来源:CategoryExplorerLogRecordFilter.java


注:本文中的org.apache.log4j.lf5.LogRecord.getCategory方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。