Examples of TxLogger


Examples of org.apache.slide.util.logger.TxLogger

   public void initialize(NamespaceAccessToken token)
      throws ServiceInitializationFailedException
   {
      super.initialize(token);
     
      TxLogger txLogger = new TxLogger(getLogger(), LogChannel());
     
      String param = (String)this.parameters.get(MAP_IMPL_PARAMETER);
      if (param == null) {
         param = MAP_IMPL_PARAMETER_DEFAULT;
      }
View Full Code Here

Examples of org.apache.slide.util.logger.TxLogger

    boolean noGlobalCacheInTx;
   
    private Map suspendedLocks = new HashMap();

    public ExtendedStore() {
        lockManager = new GenericLockManager(1, new TxLogger(getLogger(), LOG_CHANNEL));
    }
View Full Code Here

Examples of org.apache.slide.util.logger.TxLogger

    }
   
   
    protected LoggerFacade getLoggerFacade() {
      if (loggerFacade == null) {
        loggerFacade = new TxLogger(getLogger(), LOG_CHANNEL);
      }
      return loggerFacade;
    }
View Full Code Here

Examples of org.apache.slide.util.logger.TxLogger

        rm =
            new FileResourceManager(
                storeDir,
                workDir,
                urlEncodePath,
                new TxLogger(getLogger(), FileResourceManager.class.getName()),
                debug);

        getLogger().log(
            "File Store configured to " + storeDir + ", working directory " + workDir,
            getLogChannel(),
View Full Code Here

Examples of org.apache.slide.util.logger.TxLogger

        if (storeDir == null) {
            throw new ServiceParameterMissingException(this, STORE_DIR_PARAMETER);
        }

        try {
            fileSequence = new FileSequence(storeDir, new TxLogger(getLogger(), LOG_CHANNEL));
            getLogger().log("File Sequence Store configured to " + storeDir, LOG_CHANNEL, Logger.INFO);
        } catch (ResourceManagerException e) {
            getLogger().log("Can not initialize File Sequence Store", e, LOG_CHANNEL, Logger.CRITICAL);
            throw new ServiceParameterErrorException(this, STORE_DIR_PARAMETER);
        }
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.