15 lines
377 B
VB.net
15 lines
377 B
VB.net
Imports DigitalData.Modules.Logging
|
|
|
|
Public Class Helpers
|
|
Private ReadOnly LogConfig As LogConfig
|
|
Private ReadOnly Logger As Logger
|
|
|
|
''' <summary>
|
|
''' This class needs to initialize the logger by itself!
|
|
''' </summary>
|
|
Public Sub New(pLogConfig As LogConfig)
|
|
LogConfig = pLogConfig
|
|
Logger = pLogConfig.GetLogger
|
|
End Sub
|
|
End Class
|