If the logger is currently enabled for the FINE message level then the given message is forwarded to all the registered output Handler objects.
@param msg The string message (or a key in the message catalog)
121122123124125126127128129130131
lgger.fine("Removing old node " + node.name()); node.removeNode(); } } } catch (BackingStoreException e1) { lgger.fine("Error getting children ..."); e1.printStackTrace(); } // And sleep some moment before we try again try {
130131132133134135136137138139140
// And sleep some moment before we try again try { root.sync(); Thread.sleep(250); } catch (InterruptedException e) { lgger.fine("Sleep Interrupted."); } catch (BackingStoreException e) { lgger.fine("Errow syncing node."); e.printStackTrace(); } }
132133134135136137138139140141142
root.sync(); Thread.sleep(250); } catch (InterruptedException e) { lgger.fine("Sleep Interrupted."); } catch (BackingStoreException e) { lgger.fine("Errow syncing node."); e.printStackTrace(); } } } });
123124125126127128129130131132133
* @return True is the requirement is satisfied, false if not */ private boolean isSatisfied(ModuleInfo provider, ModuleInfo requirer) { Logger logger = ModuleManager.getLogger(); if (logger.isLoggable(Level.FINE)) { logger.fine("Checking whether provider " + provider + " satisfies the requirements of " + requirer); } /* * First check that both modules have the same name
129130131132133134135136137138139
/* Re-open the module in the new directory */ try { module = ModuleFactory.open(file); if (logger.isLoggable(Level.FINE)) { logger.fine("Add pending module " + module); } } catch (java.lang.Exception excp) { /* Log the error and return false */ logger.log(Level.WARNING, "[MODULES] PENDING Failed to Open Module " + file, excp);
217218219220221222223224225226227
try { Module module = ModuleFactory.open(file); map.put(module.getName(), module); if (logger.isLoggable(Level.FINE)) { logger.fine("Load pending module " + module); } } catch (java.lang.Exception excp) { ModuleManager.getLogger().log(Level.WARNING, "[MODULES] Invalid module " + file, excp); }
142143144145146147148149150151152
try { module = ModuleFactory.open(file); this.installedModules.put(moduleName, module); if (logger.isLoggable(Level.FINE)) { logger.fine("Add installed module " + module); } } catch (java.lang.Exception excp) { /* Log the error and return false */ logger.log(Level.WARNING, "[MODULES] PENDING Failed to Open Module", excp); return null;
174175176177178179180181182183184
try { Module module = ModuleFactory.open(file); map.put(module.getName(), module); if (logger.isLoggable(Level.FINE)) { logger.fine("Load installed module " + module); } } catch (java.lang.Exception excp) { ModuleManager.getLogger().log(Level.WARNING, "[MODULES] Invalid module " + file, excp); }
8081828384858687888990
if (_preprocessor != null) { // Loop through all of the defined preprocessors... for (int i=0; i < _preprocessor.length; i++) { classBytes = _preprocessor[i].preprocess(className, classBytes); _logger.fine("[PreprocessorUtil.processClass] Preprocessor " + i + " Processed Class: " + className); // Verify the preprocessor returned some bytes if (classBytes != null){ goodBytes = classBytes; }
9899100101102103104105106107108
if (cacheConfig == null) { return null; } if (logger.isLoggable(Level.FINE)) { logger.fine("configuring cache for web application " + app.getPath()); } // create the CacheManager object for this app CacheManager manager = new CacheManager();