Examples of debug()


Examples of org.docx4j.openpackaging.parts.relationships.AlteredParts.Alterations.debug()

    WordprocessingMLPackage otherPackage = WordprocessingMLPackage.load(
        new java.io.File(resourceDir + "paragraph-two.docx"));
   
    Alterations alterations = AlteredParts.start(thisPackage, otherPackage);

    alterations.debug();
       
    assertTrue( alterations.getPartsAdded().size()==0 );
    assertTrue( alterations.getPartsModified().size()==1 );
    assertTrue( alterations.getPartsDeleted().size()==0 );
   
View Full Code Here

Examples of org.elasticsearch.common.logging.ESLogger.debug()

                System.err.println(errorMessage);
                System.err.flush();
            }
            Loggers.disableConsoleLogging();
            if (logger.isDebugEnabled()) {
                logger.debug("Exception", e);
            }
            System.exit(3);
        }
    }
View Full Code Here

Examples of org.exist.storage.lock.LockInfo.debug()

         
          LockInfo info = entry.getValue();

          out().println("THREAD: " + entry.getKey());
            if (info != null) {
              info.debug(out());
            }
        }
       
        if (threads.isEmpty())
          out().println("No waiting threads.");
View Full Code Here

Examples of org.exist.storage.txn.TransactionManager.debug()

  public void process(XmldbURI collection, String[] commandData) throws CommandException {
   
    try {
      TransactionManager tm = BrokerPool.getInstance().getTransactionManager();
     
      tm.debug(out());
     
    } catch (EXistException e) {
      throw new CommandException(e);
    }
  }
View Full Code Here

Examples of org.exolab.castor.util.LocalConfiguration.debug()

                is = this.getClass().getResourceAsStream(TYPE_DEFINITIONS);
            TypeList typeList = (TypeList)unmarshaller.unmarshal( new org.xml.sax.InputSource(is) );

                //print what we just read (only in debug mode and if we have a logWriter)
                LocalConfiguration config = LocalConfiguration.getInstance();
            if (config.debug() && getLogWriter()!= null)
                  typeList.Print(getLogWriter());

                //Store the types by name in the typesByName and typesByCode hashtables
                //and create for each its associated SimpleType instance.
                Vector types= typeList.getTypes();
View Full Code Here

Examples of org.fao.geonet.Logger.debug()

    // Get the metadata depth
    File metadata = getMetadataDirectory(unzipDir);

    if (metadata.getParentFile().equals(unzipDir)) {
      log
          .debug("Metadata folder is directly under the unzip temporary folder.");
    } else {
      File[] lstmdDir = metadata.getParentFile().getParentFile()
          .listFiles();
            for (File file : lstmdDir) {
View Full Code Here

Examples of org.gradle.api.logging.Logger.debug()

      }
    }

    private void setupInputOutputs(Jar jarTask, String classifier) {
      Logger logger = this.project.getLogger();
      logger.debug("Using classifier: " + classifier + " for task "
          + task.getName());
      File inputFile = jarTask.getArchivePath();
      String outputName = inputFile.getName();
      outputName = StringUtils.stripFilenameExtension(outputName) + "-"
          + classifier + "." + StringUtils.getFilenameExtension(outputName);
View Full Code Here

Examples of org.gwtoolbox.commons.generator.rebind.EasyTreeLogger.debug()

    public final void init(T t, JClassType containerType, GeneratorContext context) throws ProcessorInitializationException {
        EasyTreeLogger newLogger = logger.branchInfo("Initializing processor '" + getClass().getName() + "'...");
        order = new AnnotationWrapper(t).getInt("order", order);
        if (newLogger.debugEnabled()) {
            newLogger.debug("Order: " + order);
        }
        doInit(newLogger, t, containerType, context);
    }

View Full Code Here

Examples of org.h2.message.Trace.debug()

                if (!isClosed()) {
                    trace.error("Pooled connection not closed", openStackTrace);
                    JdbcXAConnection.this.close();
                }
            } catch (SQLException e) {
                trace.debug("finalize", e);
            }
        }

    }
View Full Code Here

Examples of org.hornetq.core.journal.impl.JournalImpl.debug()

         {
            System.out.println("DataFiles = " + journal.getDataFilesCount());
            journal.forceMoveNextFile();
            if (journal.getDataFilesCount() != 0)
            {
               System.out.println("DebugJournal:"  + journal.debug());
            }
            Assert.assertEquals(0, journal.getDataFilesCount());
         }

         journal.stop();
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.