Files
Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities/Logging/LogTarget.cs
T
2021-10-08 12:50:30 +02:00

23 lines
474 B
C#

namespace Stone_Red_Utilities.Logging
{
/// <summary>
/// Specifies the target of the log message.
/// </summary>
public enum LogTarget
{
/// <summary>
/// Writes log to console
/// </summary>
Console = 1,
/// <summary>
/// Writes log to debug console
/// </summary>
DebugConsole = 2,
/// <summary>
/// Writes log to file
/// </summary>
File = 3
}
}