* „Linie 1: Add the import for the NLog namespace so that 'NLog.Logger' is recognized.

Linie 10: Since the constructor now takes an 'NLog.Logger' directly, assign it to the '_Logger' field.
Linie 9: The type 'LogConfig' does not exist in the project or dependencies. The constructor now directly accepts an 'NLog.Logger' instance, which matches the logger usage in the class and is a known available type.“ in Datei „Config\ConfigUtils.vb“
This commit is contained in:
Developer01
2025-12-29 13:48:09 +01:00
parent 2cb036db0c
commit ebbd35c404

View File

@@ -1,4 +1,5 @@
Imports System.IO
Imports NLog
Public Class ConfigUtils
Private ReadOnly _Logger As Logger
@@ -6,8 +7,8 @@ Public Class ConfigUtils
Private Const MIGRATE_DIRECTORY As String = "Migrate"
Public Sub New(LogConfig As LogConfig)
_Logger = LogConfig.GetLogger()
Public Sub New(Logger As NLog.Logger)
_Logger = Logger
' _File = New FilesystemEx(LogConfig)
End Sub