EDMIService: Improve logging, avoid confusion with import file methods

This commit is contained in:
Jonathan Jenne
2022-04-20 13:38:59 +02:00
parent 4e07e23c88
commit 70807ee06f
5 changed files with 89 additions and 10 deletions

View File

@@ -110,13 +110,13 @@ Public Class EDMIService
End Function
Public Function ImportFile(pData As ImportFile.ImportFileRequest) As ImportFile.ImportFileResponse Implements IEDMIService.ImportFile
_Logger.Debug("Start of Method [ImportFile]")
_Logger.Debug("Start of Method [IDB.ImportFile]")
Dim oImportFile As New ImportFile.ImportFileMethod(LogConfig, MSSQL_IDB, MSSQL_ECM, GlobalState)
Return oImportFile.Run(pData)
End Function
Public Function Globix_ImportFile(pData As GlobalIndexer.ImportFile.Globix_ImportFileRequest) As GlobalIndexer.ImportFile.Globix_ImportFileResponse Implements IEDMIService.Globix_ImportFile
_Logger.Debug("Start of Method [Globix_ImportFile]")
_Logger.Debug("Start of Method [Globix.ImportFile]")
Dim oImportFile As New GlobalIndexer.ImportFile.ImportFileMethod(LogConfig, MSSQL_IDB, MSSQL_ECM, GlobalState)
Return oImportFile.Run(pData)
End Function