20 lines
491 B
C#
20 lines
491 B
C#
using DigitalData.Modules.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChangeloggerMVC
|
|
{
|
|
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", "Changelogger");
|
|
LogConfig.Debug = Debug;
|
|
}
|
|
}
|
|
}
|