Logs now have filtering options (#219)

* Added logging configuration options

* Add support for filtering logs
This commit is contained in:
Michael Green
2023-12-09 14:07:08 +11:00
committed by GitHub
parent 9e346910f4
commit 84017639eb
8 changed files with 315 additions and 25 deletions

View File

@@ -63,4 +63,7 @@ CREATE TABLE `User_Settings` (
`Id` VARCHAR(128) NOT NULL,
`Setting` VARCHAR(45) NOT NULL,
`Value` LONGTEXT NULL DEFAULT NULL,
PRIMARY KEY (`Id`, `Setting`));
PRIMARY KEY (`Id`, `Setting`));
ALTER TABLE `ServerLogs`
ADD FULLTEXT INDEX `ft_message` USING BTREE (`Message`) VISIBLE;