示例#1
0
  /** Add a Log space. */
  void setLogSpace(String logSpaceName, String dirPath) {

    if (logSpaceName != null && dirPath != null) {
      String[] dirPaths = new String[1];
      dirPaths[0] = dirPath;
      logSpaceList.put(logSpaceName, dirPaths);
    }
  }
示例#2
0
  /** Add a Log space. */
  void setLogSpace(String logSpaceName, String[] dirPaths) {

    if (logSpaceName != null && dirPaths != null) {
      logSpaceList.put(logSpaceName, dirPaths);
    }
  }