Compare commits
3 Commits
dfce1cea3b
...
df2eed96e8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
df2eed96e8 | ||
|
|
1e695c86d7 | ||
|
|
b7bed9ae4e |
@@ -487,13 +487,12 @@ Public Class LogConfig
|
||||
AddDefaultRules(_config)
|
||||
|
||||
' Add debug rule, if configured
|
||||
If Debug Then
|
||||
If Debug = True Then
|
||||
_config.AddRule(LogLevel.Debug, LogLevel.Error, TARGET_DEBUG)
|
||||
_config.AddRule(LogLevel.Debug, LogLevel.Error, TARGET_MEMORY)
|
||||
End If
|
||||
|
||||
If Trace Then
|
||||
_config.AddRuleForAllLevels(TARGET_TRACE)
|
||||
If Trace = True Then
|
||||
_config.AddRule(LogLevel.Trace, LogLevel.Error, TARGET_TRACE)
|
||||
End If
|
||||
|
||||
' Reload all running loggers
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.5.0.0")>
|
||||
<Assembly: AssemblyFileVersion("2.5.0.0")>
|
||||
<Assembly: AssemblyVersion("2.5.1.0")>
|
||||
<Assembly: AssemblyFileVersion("2.5.1.0")>
|
||||
|
||||
Reference in New Issue
Block a user