first working version of zugferd rest service
This commit is contained in:
15
WEBSERVICES/ZUGFeRDRESTService/Logging.cs
Normal file
15
WEBSERVICES/ZUGFeRDRESTService/Logging.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using DigitalData.Modules.Logging;
|
||||
|
||||
namespace ZUGFeRDRESTService
|
||||
{
|
||||
internal class Logging : ILogging
|
||||
{
|
||||
public LogConfig LogConfig { get; set; }
|
||||
|
||||
public Logging(string LogPath, bool Debug)
|
||||
{
|
||||
LogConfig = new LogConfig(LogConfig.PathType.CustomPath, LogPath, null, "Digital Data", "ZUGFeRD-REST-API");
|
||||
LogConfig.Debug = Debug;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user