Version 0.0.0.2: fix ReloadConfig

This commit is contained in:
Jonathan Jenne 2018-08-27 15:03:09 +02:00
parent 8b9de4d0f8
commit b294eaddf9
2 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@ Imports NLog.Targets
''' <summary> ''' <summary>
''' MODULE: LogConfig ''' MODULE: LogConfig
''' '''
''' VERSION: 0.0.0.1 ''' VERSION: 0.0.0.2
''' '''
''' DATE: 24.08.2018 ''' DATE: 27.08.2018
''' '''
''' DESCRIPTION: Module that writes file-logs to different locations: ''' DESCRIPTION: Module that writes file-logs to different locations:
''' local application data, the current directory or a custom path. ''' local application data, the current directory or a custom path.
@ -272,7 +272,7 @@ Public Class LogConfig
End If End If
' Reload all running loggers ' Reload all running loggers
LogManager.ReconfigExistingLoggers() LogFactory.ReconfigExistingLoggers()
End Sub End Sub
#Region "Log Targets" #Region "Log Targets"

View File

@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("0.0.0.1")> <Assembly: AssemblyVersion("0.0.0.2")>
<Assembly: AssemblyFileVersion("1.0.0.0")> <Assembly: AssemblyFileVersion("1.0.0.0")>