Checkpoint
This commit is contained in:
13
Alpm/LogLevel.cs
Normal file
13
Alpm/LogLevel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Foodsoft.Alpm
|
||||
{
|
||||
[Flags]
|
||||
public enum LogLevel
|
||||
{
|
||||
Error = 1,
|
||||
Warning = (1 << 1),
|
||||
Debug = (1 << 2),
|
||||
Function = (1 << 3)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user