add error logging for config loader

This commit is contained in:
Jonathan Jenne 2022-02-01 11:07:34 +01:00
parent 9e4ffc94ac
commit 5186aed523

View File

@ -305,6 +305,7 @@ Module ModuleMySettings
MsgBox("Error in GetTablefromXML" & vbNewLine & ex.Message & vbNewLine & "ConfigPath: " & vbNewLine & path, MsgBoxStyle.Critical)
LOGGER.Warn("Error in GetTablefromXML: " & ex.Message, True)
LOGGER.Warn("ConfigPath: " & ConfigPath)
LOGGER.Error(ex)
Return Nothing
End Try