Example usage for java.util.logging Level FINEST

List of usage examples for java.util.logging Level FINEST

Introduction

In this page you can find the example usage for java.util.logging Level FINEST.

Prototype

Level FINEST

To view the source code for java.util.logging Level FINEST.

Click Source Link

Document

FINEST indicates a highly detailed tracing message.

Usage

From source file:edu.usu.sdl.openstorefront.web.init.AngularRewriteRule.java

@Override
public void destroy() {
    log.log(Level.FINEST, "Destroying Angular Rule");
    super.destroy();
}

From source file:com.npower.dm.util.SyncMLCanonizer4Test.java

/**
 * The message must be canonized every time before call the XML-Java
 * mapping tool (JiBX) that it parsers and generates the SyncML object.
 *
 * @param message the input XML message//from w  w  w . jav  a2 s.c  o  m
 *
 * @return message the input XML message canonized
 **/
public String canonizeOutputMessage(String message) {
    if (log.isLoggable(Level.FINEST)) {
        log.finest("Starting process of canonization on output message");
    }
    String response = metInfNamespaceHandler(message).replaceAll("<MoreData></MoreData>", "<MoreData/>");

    return mgmtTreeNamespaceHandler(response);
}

From source file:eu.flatworld.worldexplorer.layer.bmng.BMNGHTTPProvider.java

@Override
public Tile getTile(int id, int x, int y, int l) throws Exception {
    BMNGTile tile = null;//from  w w  w  .  j  a va 2 s.com
    tile = new BMNGTile();
    tile.setX(x);
    tile.setY(y);
    tile.setGx(x);
    tile.setGy((int) Math.pow(2, l) * BMNGLayer.SURFACE_HEIGHT - 1 - y);
    tile.setL(l);
    tile.setMonth(month);
    tile.setYear(year);
    LogX.log(Level.FINEST, NAME + " queueing: " + tile);
    firePropertyChange(P_IDLE, true, false);
    queueTile(tile);
    return tile;
}

From source file:com.ejisto.modules.dao.remote.BaseRemoteDao.java

BaseRemoteDao() {
    String address = getProperty(HTTP_INTERFACE_ADDRESS.getValue());
    log.log(Level.FINEST, "address is: " + address);
    serverAddress = evaluateServerAddress(address);
    log.log(Level.FINEST, "server address set to: " + this.serverAddress);
}

From source file:com.prowidesoftware.swift.utils.IsoUtils.java

private IsoUtils() {
    /*/*from w  ww  . j a va2  s.  co m*/
     * load currencies from all available locale instances
     * 
     * TODO This should be replaced by Currency.getAvailableCurrencies() once Prowide Core in migrated to Java7
     */
    currencies = new HashSet<String>();
    for (Locale locale : Locale.getAvailableLocales()) {
        try {
            String val = Currency.getInstance(locale).getCurrencyCode();
            if (!currencies.contains(val)) {
                currencies.add(val);
            }
        } catch (Exception e) {
            log.log(Level.FINEST, "error loading currencies from locale " + locale, e);
        }
    }

    countries = new HashSet<String>(Arrays.asList(Locale.getISOCountries()));

    // Add country code for Kosovo, not yet in ISO but used by SWIFT
    addCountry("XK");
}

From source file:SuperPeer.java

@Override
public void lock() throws Exception {
    lg.log(Level.FINEST, "SuperPeer lock engaged.");
    while (lock) {
        Thread.sleep(1000);// w w  w .  j av  a 2s.  c o m
    }
    lock = true;
}

From source file:com.ejisto.modules.dao.remote.BaseRemoteDao.java

BaseRemoteDao(String serverAddress) {
    this.serverAddress = evaluateServerAddress(serverAddress);
    log.log(Level.FINEST, "server address set to: " + this.serverAddress);
}

From source file:com.github.danielfernandez.matchday.agents.MatchCommentAgent.java

private Mono<MatchComment> insertNewEvent() {
    // Will insert a new comment for a random match
    final Mono<Match> match = chooseMatch();
    return match.map(
            m -> new MatchComment(m.getId(), MatchCommentUtils.randomAuthor(), MatchCommentUtils.randomText()))
            .flatMap(this.mongoTemplate::insert).log(LOGGER_AGENT, Level.FINEST);
}

From source file:SuperPeer.java

@Override
public synchronized void unlock() throws Exception {
    lock = false;//from   w w w  .ja  va 2 s  .c o m
    lg.log(Level.FINEST, "SuperPeer lock disengaged.");
}

From source file:com.prowidesoftware.swift.io.parser.MxNodeContentHandler.java

public void startElement(final String uri, final String localName, final String qName,
        final org.xml.sax.Attributes atts) throws org.xml.sax.SAXException {
    if (log.isLoggable(Level.FINEST)) {
        log.finest("uri: " + uri + "\nlocalName: " + localName + "\nqName: " + qName
                + (atts == null ? "" : "\natts(" + atts.getLength() + "): ..."));
    }//from   w  w w .  ja v  a 2 s .com
    final MxNode node = new MxNode(currentNode, localName);
    if (atts != null) {
        for (int i = 0; i < atts.getLength(); i++) {
            node.addAttribute(atts.getLocalName(i), atts.getValue(i));
        }
    }
    /*
     * set uri as xmlns attribute for the first node in namespace
     */
    if (uri != null
            && (node.getParent() == null || !StringUtils.equals(node.getParent().getAttribute("xmlns"), uri))) {
        node.addAttribute("xmlns", uri);
    }
    currentNode = node;
}