Package org.apache.log4j.rolling.helper

Examples of org.apache.log4j.rolling.helper.GZCompressAction


      nextActiveFile = currentActiveFile;
    }

    if (suffixLength == 3) {
      compressAction =
        new GZCompressAction(
          new File(lastBaseName), new File(lastFileName), true);
    }

    if (suffixLength == 4) {
      compressAction =
View Full Code Here


      Action compressAction = null;

      if (renameTo.endsWith(".gz")) {
        renameTo = renameTo.substring(0, renameTo.length() - 3);
        compressAction =
          new GZCompressAction(
            new File(renameTo), new File(compressedName), true);
      } else if (renameTo.endsWith(".zip")) {
        renameTo = renameTo.substring(0, renameTo.length() - 4);
        compressAction =
          new ZipCompressAction(
View Full Code Here

      nextActiveFile = currentActiveFile;
    }

    if (suffixLength == 3) {
      compressAction =
        new GZCompressAction(
          new File(lastBaseName), new File(lastFileName), true);
    }

    if (suffixLength == 4) {
      compressAction =
View Full Code Here

      Action compressAction = null;

      if (renameTo.endsWith(".gz")) {
        renameTo = renameTo.substring(0, renameTo.length() - 3);
        compressAction =
          new GZCompressAction(
            new File(renameTo), new File(compressedName), true, getLogger());
      } else if (renameTo.endsWith(".zip")) {
        renameTo = renameTo.substring(0, renameTo.length() - 4);
        compressAction =
          new ZipCompressAction(
View Full Code Here

      nextActiveFile = currentActiveFile;
    }

    if (suffixLength == 3) {
      compressAction =
        new GZCompressAction(
          new File(lastBaseName), new File(lastFileName), true, getLogger());
    }

    if (suffixLength == 4) {
      compressAction =
View Full Code Here

      Action compressAction = null;

      if (renameTo.endsWith(".gz")) {
        renameTo = renameTo.substring(0, renameTo.length() - 3);
        compressAction =
          new GZCompressAction(
            new File(renameTo), new File(compressedName), true);
      } else if (renameTo.endsWith(".zip")) {
        renameTo = renameTo.substring(0, renameTo.length() - 4);
        compressAction =
          new ZipCompressAction(
View Full Code Here

      nextActiveFile = currentActiveFile;
    }

    if (suffixLength == 3) {
      compressAction =
        new GZCompressAction(
          new File(lastBaseName), new File(lastFileName), true);
    }

    if (suffixLength == 4) {
      compressAction =
View Full Code Here

TOP

Related Classes of org.apache.log4j.rolling.helper.GZCompressAction

Copyright © 2018 www.massapicom. 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.