mirror of
https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities.git
synced 2026-09-04 09:06:31 +02:00
23 lines
474 B
C#
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
|
|
}
|
|
} |