Class RollingFileAppender<E>

    • Constructor Detail

      • RollingFileAppender

        public RollingFileAppender()
    • Method Detail

      • stop

        public void stop()
        Description copied from class: OutputStreamAppender
        Stop this appender instance. The underlying stream or writer is also closed.

        Stopped appenders cannot be reused.

      • setFile

        public void setFile(String file)
        Description copied from class: FileAppender
        The File property takes a string value which should be the name of the file to append to.
      • getFile

        public String getFile()
        Description copied from class: FileAppender
        Returns the value of the File property.

        This method may be overridden by derived classes.

      • rollover

        public void rollover()
        Implemented by delegating most of the rollover work to a rolling policy.
      • subAppend

        protected void subAppend(E event)
        This method differentiates RollingFileAppender from its super class.
      • setRollingPolicy

        public void setRollingPolicy(RollingPolicy policy)
        Sets the rolling policy. In case the 'policy' argument also implements TriggeringPolicy, then the triggering policy for this appender is automatically set to be the policy argument.
        Parameters:
        policy -