forked from quickshell/quickshell
core/log: add filesystem logger
This commit is contained in:
parent
46f48f2f87
commit
6bf4826ae7
9 changed files with 299 additions and 53 deletions
13
src/core/filelogger.hpp
Normal file
13
src/core/filelogger.hpp
Normal file
|
@ -0,0 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#include <qthread.h>
|
||||
#include <qtmetamacros.h>
|
||||
class FileLoggerThread: public QThread {
|
||||
Q_OBJECT;
|
||||
|
||||
public:
|
||||
static void init();
|
||||
|
||||
private:
|
||||
explicit FileLoggerThread() = default;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue