/* */ LoggerRepository genericHierarchy()
/* */ {
/* 193 */ if (this.genericHierarchy == null) {
/* 194 */ File f = new File(this.dir, GENERIC + CONFIG_FILE_EXT);
/* 195 */ if (f.exists()) {
/* 196 */ this.genericHierarchy = new Hierarchy(new RootLogger((Level)Priority.DEBUG));
/* 197 */ new PropertyConfigurator().doConfigure(f.getAbsolutePath(), this.genericHierarchy);
/* */ } else {
/* 199 */ cat.warn("Could not find config file [" + f + "]. Will use the default hierarchy.");
/* */
/* 201 */ this.genericHierarchy = LogManager.getLoggerRepository();