Examples of log()


Examples of org.sonar.api.utils.ValidationMessages.log()

    Reader xmlFileReader = null;
    try {
      xmlFileReader = languageModelFinder.createReaderForXMLFile(pluginKey);
      ValidationMessages validationMessages = ValidationMessages.create();
      List<RuleDebt> rules = importer.importXML(xmlFileReader, validationMessages);
      validationMessages.log(LOG);
      return rules;
    } finally {
      IOUtils.closeQuietly(xmlFileReader);
    }
  }
View Full Code Here

Examples of org.speakright.core.SRLogger.log()

        break; //we're done
      }
      else
      {
        SRLogger logger = SRLogger.createLogger();
        logger.log(String.format("zloading %d items from %s subIndex %d", prompt.m_itemL.size(), type, subIndex));
        //add prompt first       
        promptToLoad.m_itemL.addAll(0, prompt.m_itemL);
        prompt.m_itemL.clear();
       
        subIndex--; //look for next one
View Full Code Here

Examples of org.tmatesoft.svn.core.io.SVNRepository.log()

                            newTasks.add(new Task(task.relPath, revision - 1, true));
                        }
                        showProgressInfo(progressIndicator, rgRev + " processed");
                    }
                });
                repo.log(new String[]{task.relPath}, deletedRevision < 0 ? INVALID_REVISION : (deletedRevision - 1), 0,
                        true, true, 0, mergeInfoAvailable && !retryWithoutMergeInfo , null, handler);
                handler.checkFinalState();
                revisions.addRevisionChain(revisionChain);
                pathsToProcess.addAll(newTasks);
                retryWithoutMergeInfo = false;
View Full Code Here

Examples of org.tmatesoft.svn.util.ISVNDebugLog.log()

        for (Iterator iterator = myLoggers.entrySet().iterator(); iterator.hasNext();) {
            Map.Entry entry = (Map.Entry) iterator.next();
            ISVNDebugLog log = (ISVNDebugLog) entry.getKey();
            Boolean needTracing = (Boolean) entry.getValue();
            if (needTracing.booleanValue()) {
                log.log(logType, message, data);               
            }
        }
    }

    public void log(SVNLogType logType, Throwable th, Level logLevel) {
View Full Code Here

Examples of org.zkoss.zss.engine.Complex.log()

   * @param ctx the function context.
   * @return the natural logarithm of a complex number.
   */
  public static Object engineerImln(Object[] args, XelContext ctx) {
    Complex complex = UtilFns.validateComplex(args[0].toString());
    return UtilFns.cToComplex(complex.log(), complex.getSuffix());
  }
 
  /**
   * Returns the base-10 logarithm of a complex number.
   * This function implements the IMLOG10(inumber) spreadsheet function.
View Full Code Here

Examples of railo.commons.io.log.LogAndSource.log()

    msg.append("["+trace.getTemplate()+" @ line: "+trace.getLine()+"]");
    if(hasCat || hasText || hasVar) msg.append("- ");
    if(hasCat)msg.append("["+trace.getCategory()+"] ");
    if(hasVar)msg.append("["+var+"="+varValue+"] ");
    if(hasText)msg.append(" "+trace.getText()+" ");
    log.log(trace.getType(), "cftrace", msg.toString());
   
    // abort
    if(abort) throw new Abort(Abort.SCOPE_REQUEST);
   
  }
View Full Code Here

Examples of smilehouse.opensyncro.system.Environment.log()

        // Otherwise get the queue length to return in the response
        queueLength = pet.getPipeExecutionQueue().getQueueLength();
     
    } catch (Exception e) {
      Environment en=Environment.getInstance();
      en.log("Exception while processing requests in pipe execution queue for pipe: " + pipeName);
      en.log(e.getMessage(),e);
            return "ERROR: Exception while processing pipe execution request for pipe: " + pipeName;
    }
   
        if(isSynced)
View Full Code Here

Examples of sos.spooler.Spooler.log()

      strMessage = String.format("check %1$s: %2$s", strJobName, myReplaceAll(strMessage,"\\[?JOB_NAME\\]?", strJobName));
      Date objDateStartTime = Options().start_time.getDateObject();
     
      if(flgRunAsSchedulerAPIJob) {
        Spooler objSpooler = (Spooler) objSp;
        Mail objMail = objSpooler.log().mail();
        if(isNotEmpty(strMailTo)) {
          objMail.set_to(strMailTo);
        }
        if(isNotEmpty(strMailCc)) {
          objMail.set_cc(strMailCc);
View Full Code Here

Examples of uk.ac.ucl.panda.applications.evaluation.trec.QualityStats.log()

     
      QualityStats stats[] = qrun.execute(judge, submitLog, logger, scorelogger);

      // print an avarage sum of the results
      QualityStats avg = QualityStats.average(stats);
      avg.log("SUMMARY", 2, logger, "  ");
 
   

   
  }
View Full Code Here

Examples of uk.co.blackpepper.shadowtail.output.file.FileLogger.log()

      @SuppressWarnings("unused")
      final ApplicationContext ctx = new FileSystemXmlApplicationContext(
          "file:" + args[0]);
      FileLogger logger = (FileLogger) ctx.getBean("statLogger");
      for (int i = 0; i < 5; i++) {
        logger.log();
        Thread.sleep(1000);
      }
    } catch (BeanDefinitionStoreException x) {
      log.error(x);
      throw new IllegalArgumentException(message, x);
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.