Package net.sf.jlogmicro.util.logging

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


        image = Image.createImage(is);
        is.close();
        //#endif
        //#ifdef DLOGGING
        Logger logger = Logger.getLogger("UiUtil");
        logger.warning(
            "Could not get icon, alternate worked icons ex: ", e);
        //#endif
      }
    } catch(Exception e) {
      //#ifdef DLOGGING
View Full Code Here


                timeIndex = 5;
                gmtIndex = 6;
            } else if( columnCount<5 || columnCount>6 ) {
        //#ifdef DLOGGING
        Logger logger = Logger.getLogger("RssFormatParser");
        logger.warning("Invalid date format: " + dateString);
        //#endif
        for (int ic = 0; ic < dateString.length(); ic++) {
          System.out.println("date=" + ic + "," + dateString.charAt(ic) + "," + (int)dateString.charAt(ic));
        }
                throw new Exception("Invalid date format: " + dateString);
View Full Code Here

          hours, minutes, seconds);
           
        } catch(Exception ex) {
      //#ifdef DLOGGING
      Logger logger = Logger.getLogger("RssFormatParser");
      logger.warning("parseDcDate error while converting date " +
               "string to object: " +
                    dateString, ex);
      //#endif
            // TODO: Add exception handling code
            System.err.println("parseDcDate error while converting date string to object: " +
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.