Class TdApi.LogStreamFile

  • Enclosing class:
    TdApi

    public static class TdApi.LogStreamFile
    extends TdApi.LogStream
    The log is written to a file.
    • Field Detail

      • path

        public String path
        Path to the file to where the internal TDLib log will be written.
      • maxFileSize

        public long maxFileSize
        The maximum size of the file to where the internal TDLib log is written before the file will automatically be rotated, in bytes.
      • redirectStderr

        public boolean redirectStderr
        Pass true to additionally redirect stderr to the log file. Ignored on Windows.
      • CONSTRUCTOR

        public static final int CONSTRUCTOR
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • LogStreamFile

        public LogStreamFile()
        The log is written to a file.
      • LogStreamFile

        public LogStreamFile​(String path,
                             long maxFileSize,
                             boolean redirectStderr)
        The log is written to a file.
        Parameters:
        path - Path to the file to where the internal TDLib log will be written.
        maxFileSize - The maximum size of the file to where the internal TDLib log is written before the file will automatically be rotated, in bytes.
        redirectStderr - Pass true to additionally redirect stderr to the log file. Ignored on Windows.