mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-17 16:55:54 +01:00
f78fa3744b
# Conflicts: # lib/loggerpro/LoggerPro.ConsoleAppender.pas
10 lines
289 B
Plaintext
10 lines
289 B
Plaintext
You will need a SQL Server database with a stored procedure that can accept the log item as parameters
|
|
|
|
e.g.
|
|
@LogType int,
|
|
@LogTag nvarchar(25),
|
|
@LogMessage nvarchar(4096),
|
|
@Timestamp datetime,
|
|
@TID int
|
|
|
|
You will also need to configure the DB Connection string in the LoggerProConfig unit. |