small changes and fixes for jobrunner

This commit is contained in:
Jonathan Jenne
2019-04-23 16:16:58 +02:00
parent 3bd9c04b9c
commit 0bf0f8a05d
5 changed files with 32 additions and 20 deletions

View File

@@ -3,7 +3,7 @@ Imports DigitalData.Modules.Interfaces
Imports DigitalData.Modules.Logging
Namespace SyncUsers
Public Class Firebird
Public Class FirebirdSync
Implements ISyncUsers
Private ReadOnly _logConfig As LogConfig
@@ -25,7 +25,7 @@ Namespace SyncUsers
oGroupId = GetGroupId(GroupName)
If oGroupId = 0 Then
_logger.Warn("Group {0} does not exist in database. Exiting", GroupName)
_logger.Debug("Group {0} does not exist in database or is not enabled for sync.", GroupName)
Return oSyncedUsers
End If

View File

@@ -2,7 +2,7 @@
Imports DigitalData.Modules.Logging
Namespace SyncUsers
Public Class MSSQL
Public Class MSSQLSync
Implements ISyncUsers
Private _logConfig As LogConfig