Module tdlight.api

Class TdApi.LogStreamFile

Enclosing class:
TdApi

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

    • 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
      See Also:
  • Constructor Details

    • 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 - String Path to the file to where the internal TDLib log will be written.
      maxFileSize - long The maximum size of the file to where the internal TDLib log is written before the file will automatically be rotated, in bytes.
      redirectStderr - boolean Pass true to additionally redirect stderr to the log file. Ignored on Windows.
    • LogStreamFile

      public LogStreamFile(DataInput input) throws IOException
      The log is written to a file.
      Throws:
      IOException
  • Method Details