Compare commits
3 Commits
acb94c2be3
...
7955e9d13e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7955e9d13e | ||
|
|
05dabce908 | ||
|
|
efc785e905 |
@@ -43,10 +43,11 @@ Public Class ProfileSearches
|
|||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
_Logger.Warn($"Could not initialize the AppServer: {ex.Message}")
|
_Logger.Warn($"Could not initialize the AppServer: {ex.Message}")
|
||||||
|
_Logger.Error(ex)
|
||||||
End Try
|
End Try
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
|
_Logger.Error(ex)
|
||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -94,13 +95,13 @@ Public Class ProfileSearches
|
|||||||
End If
|
End If
|
||||||
|
|
||||||
oDocSearches.Add(New Search() With {
|
oDocSearches.Add(New Search() With {
|
||||||
.Guid = oGuid,
|
.Guid = oGuid,
|
||||||
.DataTable = oDatatable,
|
.DataTable = oDatatable,
|
||||||
.ProfileId = oProfileId,
|
.ProfileId = oProfileId,
|
||||||
.TabCaption = oTabTitle,
|
.TabCaption = oTabTitle,
|
||||||
.TabIndex = oCounter,
|
.TabIndex = oCounter,
|
||||||
.SQLCommand = oSQL
|
.SQLCommand = oSQL
|
||||||
})
|
})
|
||||||
|
|
||||||
oCounter += 1
|
oCounter += 1
|
||||||
Next
|
Next
|
||||||
|
|||||||
@@ -250,6 +250,9 @@ Public Class LogConfig
|
|||||||
LogDirectory = _basePath
|
LogDirectory = _basePath
|
||||||
LogFile = GetCurrentLogFilePath()
|
LogFile = GetCurrentLogFilePath()
|
||||||
|
|
||||||
|
Dim oLogger = GetLogger()
|
||||||
|
oLogger.Info("Logging started for [{0}{1}] in [{2}]", oProductName, logFileSuffix, LogFile)
|
||||||
|
|
||||||
' Clear old Logfiles as defined in `FileKeepInterval`
|
' Clear old Logfiles as defined in `FileKeepInterval`
|
||||||
ClearOldLogfiles(FileKeepRangeInDays)
|
ClearOldLogfiles(FileKeepRangeInDays)
|
||||||
End Sub
|
End Sub
|
||||||
|
|||||||
@@ -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("2.4.3.0")>
|
<Assembly: AssemblyVersion("2.4.4.0")>
|
||||||
<Assembly: AssemblyFileVersion("2.4.3.0")>
|
<Assembly: AssemblyFileVersion("2.4.4.0")>
|
||||||
|
|||||||
Reference in New Issue
Block a user