Class QLogConfiguration


  • public final class QLogConfiguration
    extends java.lang.Object
    Configuration used for setup qlog.
    • Constructor Summary

      Constructors 
      Constructor Description
      QLogConfiguration​(java.lang.String path, java.lang.String logTitle, java.lang.String logDescription)
      Create a new configuration.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String logDescription()
      Return the description.
      java.lang.String logTitle()
      Return the title.
      java.lang.String path()
      Return the path to the log file.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • QLogConfiguration

        public QLogConfiguration​(java.lang.String path,
                                 java.lang.String logTitle,
                                 java.lang.String logDescription)
        Create a new configuration.
        Parameters:
        path - the path to the log file to use. This file must not exist yet. If the path is a directory the filename will be generated
        logTitle - the title to use when logging.
        logDescription - the description to use when logging.
    • Method Detail

      • path

        public java.lang.String path()
        Return the path to the log file.
        Returns:
        the path.
      • logTitle

        public java.lang.String logTitle()
        Return the title.
        Returns:
        the title.
      • logDescription

        public java.lang.String logDescription()
        Return the description.
        Returns:
        the description.