Sample 1
if (Logging.LOGGING) log.warn("Could not get TransportStreams");

Sample 2
if (Logging.LOGGING)
    log.debug("Notifying NIListeners tune complete: " + request + " " + success + " " + synced);

Sample 3
if (LOGGING)
    log.debug(m_logPrefix + "Notifying listener of " + caEvent);

Sample 4
if (DEBUG && Logging.LOGGING) log.debug("iniz: " + mgrName + "," + clsName);

Sample 5
if (Logging.LOGGING)
{

    log.info("purgeLowestPriority - contextId: " + contextId + ", timeout: " + timeout + ", urgent: " + urgent);
}

Sample 6
if (LOGGING && log.isDebugEnabled())
{

    log.debug("App Thread Priority: " + ThreadPriority.APP);    log.debug("System Thread Priority: " + SYSTEM_PRIORITY);
}

Sample 7
if (LOGGING && purge)
{

    log.info("Privileged Certificates mismatch - purging storage...");
    if (log.isDebugEnabled())
    {
        log.debug(" old certs = " + toString(privilegedCertificates));
        log.debug(" new certs = " + toString(newBytes));
    }
}

Sample 8
if (Logging.LOGGING)
{ log.debug("+(ds-scr-s) reserving HScreenDevice[" + i + "]: " + dev.getIDstring()); }

Sample 9
if (LOGGING && c != snapshot) log.debug("Not Owner: " + c + " owner=" + snapshot);

Sample 10
if (LOGGING && expectedSize != -1 && copied != expectedSize)
    log.debug("Unexpected byteCount: was=" + copied + " expected=" + expectedSize);

Sample 11
if (LOGGING && (inProgress || cancelled))
    log.debug("Storage finished " + (cancelled ? "[CANCELLED] " : "") + this);

Sample 12
private boolean isDetailedLoggingOn()
{

    if (LOGGING && detailedLoggingOn) return true;
    return false;
}

Sample 13
// if (Logging.LOGGING)
// log.debug("descriptor["descriptor_tag","descriptor_length"]");

Sample 14
if (LOGGING) xaitLog.debug("sectionFilterUpdate(): Ignoring unexpected filter source.");

Sample 15
if (LOGGING && aitLog.isDebugEnabled())
    aitLog.debug("AIT not found (PMT not available for " + loc + ")");

Sample 16
if (FILTER_LOGGING && aitLog.isDebugEnabled())
{

    aitLog.debug("startFiltering(" + pid + ",0x74)");
}

Sample 17
if(Logging.LOGGING){
log.debug("SNMPManagerImpl.registerMIBHandlers()" + className);
}

Sample 18
* @param title
*            the String to display with the data. private void
*            dumpSoundManagerInfo (String title) { if (Logging.LOGGING) {
*            if (v != null) { int count = v.size();
*

Sample 19
if (Logging.LOGGING)
{

    EASAlertTextAudio.LOG.warn(message);
}

Sample 20
private final void logWarn(String text)
{

    if (Logging.LOGGING)
    {
        EASAlertTextOnly.LOG.warn(text);
    }
}

Sample 21
protected final void logWarnMessage(String text)
{

    if (Logging.LOGGING)
    {
        EASState.LOG.warn(formatLogMessage(EASState.getAlertStrategy().getMessage(), text));
    }
}

// somewhere later in the code
logWarnMessage("EASHandler threw exception during private descriptor notification", t);

Sample 22
if (!LOGGING || !JavaVersion.JAVA_2)
    singleton = new RefTracker0();

Sample 23
if (DEBUG && mle.getEditMode())
{

    if (Logging.LOGGING)
    {
        log.debug("caretline = " + caret.line);
        log.debug("scrollline = " + scroll);

Sample 24
if (LOGGING) logBySeverity(event);

Sample 25
if (ConnectionManagerProxy.LOGGING)
{

    ConnectionManagerProxy.log.debug("ConnectionCompleteActionRequest.processNotification() - called");
}

  • No labels