Package net.sf.jlogmicro.util.logging

Examples of net.sf.jlogmicro.util.logging.Logger.finest()


      final String storeString,
      boolean sencoded){
    // TODO handle serialize items
    //#ifdef DLOGGING
    Logger logger = Logger.getLogger("RssItunesFeed");
    logger.finest("serializeItems,encoded,sencoded=" + serializeItems + "," + encoded + "," + sencoded);
    //#endif
    //#ifdef DTEST
    long encodeTime = 0L;
    long splitTime = 0L;
    long joinTime = 0L;
View Full Code Here


    /** Return record store string info */
    final public static RssShortItem[] getShortItems(
      final RssReaderMIDlet midlet, final String storeString) {
    //#ifdef DLOGGING
    Logger logger = Logger.getLogger("RssItunesFeed");
    logger.finest("storeString=" + storeString);
    //#endif
    String[] nodes = StringUtil.split( storeString, '|' );
    final int itemsOff = NBR_ITUNES_FEED_INFO + RssFeed.ITUNES_ITEMS;
    if ((itemsOff >= nodes.length) || (nodes[itemsOff].length() == 0)) {
      return new RssShortItem[0];
View Full Code Here

    } else {
      pubDate = parseStdDate(date);
    }
    //#ifdef DLOGGING
    Logger logger = Logger.getLogger("RssFormatParser");
    logger.finest("date,pubDate=" + date + "," + pubDate);
    //#endif
    return pubDate;
  }

    /**
 
View Full Code Here

          }
        }

        //#ifdef DLOGGING
        Logger logger = Logger.getLogger("com.substanceofcode.utilsSortUtil");
        logger.finest("lo,lo0,hi0,hi,mid=" + lo +"," + lo0 + "," + hi0 + "," + hi + "," + mid);
        /*
        if (finestLoggable) {
          for (int ic = lo0; ic < hi0; ic++) {
            logger.finer("ic,lngValues=" + ic +"," + lngValues[indexes[ic]);
          }
View Full Code Here

  public static final Vector createWordList(final String text, final int width,
      final int height, final int colTxt, final int colTit) {
    //#ifdef DLOGGING
    Logger logger = Logger.getLogger( "RenderedWord");
      boolean finestLoggable = logger.isLoggable(Level.FINEST);
    if (finestLoggable){logger.finest("text=" + text);}
    //#endif
    final Vector wordList = new Vector();
    RenderedWord oldWord;
    final String tmpText = text.replace('\n', ' ');
    char[] ctmpText = tmpText.toCharArray();
View Full Code Here

            }
            int tagLen = tag.length();
            //#ifdef DTEST
            if (debug) {
              //#ifdef DLOGGING
              if (finestLoggable){logger.finest("tag,tagLen=" + tag + "," + tagLen);}
              //#endif
            }
            //#endif
            if (tagLen >= 1) {
              switch(tag.charAt(0)) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.