ZUGFeRDWebservice: fix connection string property

This commit is contained in:
Jonathan Jenne 2022-09-27 15:00:54 +02:00
parent 2144d7e771
commit d2ab705fbb

View File

@ -30,7 +30,7 @@ namespace ZUGFeRDRESTService
MSSQL = new MSSQLServer(LogConfig, AppConfig["MSSQLConnectionString"]);
Firebird = new Firebird(LogConfig, FBConfig["Datasource"], FBConfig["Database"], FBConfig["Username"], FBConfig["Password"]);
Logger.Debug("MSSQL Connection: [{0}]", MSSQL.CurrentSQLConnectionString);
Logger.Debug("MSSQL Connection: [{0}]", MSSQL.ConnectionString);
Logger.Debug("Firebird Connection: [{0}]", Firebird.ConnectionString);
}