initial version

This commit is contained in:
2024-08-09 16:37:30 +02:00
parent caf5371beb
commit 1609b8fb1a
8 changed files with 184 additions and 0 deletions

5
sql/insertLogs.sql Normal file
View File

@@ -0,0 +1,5 @@
INSERT INTO logs
(logTime, process, logHandler, levelName, levelNo, fileName, fileLineNo, message)
VALUES
(:1, :2, :3, :4, :5, :6, :7, :8)
;