14 lines
631 B
C#
14 lines
631 B
C#
namespace RuleEngine.Constants
|
|
{
|
|
public static class LogConstants
|
|
{
|
|
public const string LOG_FILE_PATH = "../Logs/";
|
|
public const string LOG_EXCEPTION_FILE_PATH = "../Exceptions/";
|
|
public const string LogFileNameError = "RuleEngineErrorLog.txt";
|
|
public const string LogFileNamePVT = "PVTLog.txt";
|
|
public const string LogFileNameCommand = "CommandLog.txt";
|
|
public const string LogFileNameDevice = "DeviceLog.txt";
|
|
public const string LogFileNameCarHistory = "CarHistoryLog.txt";
|
|
public const string LogFileNameCarHistoryError = "CarHistoryErrorLog.txt";
|
|
}
|
|
} |