Added "UseLoggerVerbosityLevel" to the wizard generated code

This commit is contained in:
Daniele Teti 2024-11-08 12:33:39 +01:00
parent c75eea7517
commit 2c404c6efa

View File

@ -1073,6 +1073,9 @@ begin
.AppendLine(' // UseConsoleLogger defines if logs must be emitted to also the console (if available).') .AppendLine(' // UseConsoleLogger defines if logs must be emitted to also the console (if available).')
.AppendLine(' UseConsoleLogger := True;') .AppendLine(' UseConsoleLogger := True;')
.AppendLine() .AppendLine()
.AppendLine(' // UseLoggerVerbosityLevel defines the lowest level of logs that will be produced.')
.AppendLine(' UseLoggerVerbosityLevel := TLogLevel.levNormal;')
.AppendLine()
.AppendLine() .AppendLine()
.AppendLine(' LogI(''** DMVCFramework Server ** build '' + DMVCFRAMEWORK_VERSION);'); .AppendLine(' LogI(''** DMVCFramework Server ** build '' + DMVCFRAMEWORK_VERSION);');