If the logger is currently enabled for the INFO 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)
6566676869707172737475
* If the file does not exist or cannot be read, do nothing */ if (this.getFile().exists() == true && this.getFile().canRead() == true) { File[] files = this.getFile().listFiles(FileWFS.CELL_FILE_FILTER); logger.info("WFS: " + files.length + " files found in " + this.getFile().getName()); /* * For each file, parse off the end of the naming convention suffix * and put in the linked list */
7071727374757677787980
}}); for (int i = 0; i < docs.length; i++) { final File doc = docs[i]; final Logger logger = Logger.getLogger(getClass().getName()); logger.info("Processing file \" " + doc.toString() + "\"."); /* Execute the test task. */ task.runTest(doc); } }
8990919293949596979899
bi = ep.getEndpointInfo().getBinding(); ex.put(BindingInfo.class, bi); } // handling inbound message if (logger.isLoggable(Level.INFO)) { logger.info("AbstractRoutingMessageInInterceptor Infer BindingOperationInfo."); } boi = getBindingOperation(message, document); if (boi == null) {
106107108109110111112113114115116
if (boi != null) { ex.put(BindingOperationInfo.class, boi); ex.put(OperationInfo.class, boi.getOperationInfo()); ex.setOneWay(boi.getOperationInfo().isOneWay()); if (logger.isLoggable(Level.INFO)) { logger.info("DOMInInterceptor- BindingOperation is:" + boi.getName()); } } } BindingMessageInfo bmi = isRequestor(message) ? boi.getOutput() : boi.getInput();
6667686970717273747576
141142143144145146147148149150151
sources.add(url); } catch(MalformedURLException e) { logger.info("Skipping malformed URL " + url); } } else { logger.warning("Value must be greater then 3 signs for " + bot.getAttribute("nick"));
152153154155156157158159160161162
} } if(sources.size() > 0) { logger.info("Found " + sources.size() + " sources for " + bot.getAttribute("nick")); return new FeedBot(host, port, nick, pass, channel, ssl, minInterval, maxInterval, sources); } else {
158159160161162163164165166167168
return new FeedBot(host, port, nick, pass, channel, ssl, minInterval, maxInterval, sources); } else { logger.info("Found no sources for " + bot.getAttribute("nick")); return null; } }
14211422142314241425142614271428142914301431
continue; } if (log.isLoggable(Level.INFO)) { log.info("Reading config " + systemId); } appConfigResources.add(getUnmarshaller(ectx).getFacesConfig(stream, systemId)); //getDispenser().feed(getUnmarshaller().getFacesConfig(stream, systemId)); stream.close();
15371538153915401541154215431544154515461547