9 lines
285 B
VB.net
9 lines
285 B
VB.net
''' <summary>
|
|
''' Keeps the constants needed for the Logger
|
|
''' </summary>
|
|
Public Class Constants
|
|
Public Const KEEP_FILES_OPEN As Boolean = False
|
|
Public Const MAX_ARCHIVE_FILES_DEFAULT As Integer = 30
|
|
Public Const MAX_ARCHIVE_FILES_DEBUG_DETAIL As Integer = 1
|
|
End Class
|