mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Implement file logger.
This commit is contained in:
parent
73832a5ed8
commit
1058572c8a
10 changed files with 566 additions and 6 deletions
|
@ -279,6 +279,23 @@ public:
|
|||
int executionLogMessageTypes() const;
|
||||
void setExecutionLogMessageTypes(const int &value);
|
||||
|
||||
// File log
|
||||
bool fileLogEnabled() const;
|
||||
void setFileLogEnabled(bool enabled);
|
||||
QString fileLogPath() const;
|
||||
void setFileLogPath(const QString &path);
|
||||
bool fileLogBackup() const;
|
||||
void setFileLogBackup(bool backup);
|
||||
bool fileLogDeleteOld() const;
|
||||
void setFileLogDeleteOld(bool deleteOld);
|
||||
int fileLogMaxSize() const;
|
||||
void setFileLogMaxSize(const int &size);
|
||||
int fileLogAge() const;
|
||||
void setFileLogAge(const int &age);
|
||||
int fileLogAgeType() const;
|
||||
void setFileLogAgeType(const int &ageType);
|
||||
|
||||
|
||||
// Queueing system
|
||||
bool isQueueingSystemEnabled() const;
|
||||
void setQueueingSystemEnabled(bool enabled);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue