If the logger is currently enabled for the FINER 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)
118119120121122123124125126127128
case FINE: log.fine(output); break; case FINER: log.finer(output); break; case FINEST: log.finest(output); }
187188189190191192193194195196197
int htmlEndIndex = htmlText.indexOf('>', htmlStartIndex); // If we have unmatched '<' without '>' stop or we // get into infinate loop. if (htmlEndIndex < 0) { //#ifdef DLOGGING if (finerLoggable) {logger.finer("No end > for htmlStartIndex,htmlText=" + htmlStartIndex + "," + htmlText);} if (finerLoggable) {logger.finer("plainText=" + plainText);} //#endif break; } htmlText = htmlText.substring(htmlEndIndex+1);
188189190191192193194195196197198
// If we have unmatched '<' without '>' stop or we // get into infinate loop. if (htmlEndIndex < 0) { //#ifdef DLOGGING if (finerLoggable) {logger.finer("No end > for htmlStartIndex,htmlText=" + htmlStartIndex + "," + htmlText);} if (finerLoggable) {logger.finer("plainText=" + plainText);} //#endif break; } htmlText = htmlText.substring(htmlEndIndex+1); htmlStartIndex = htmlText.indexOf('<');