aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Logging/LogCategory.cs
blob: f33190e2cf8e8ad10bec704ca06dc8fe861aba0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Logging
{
    /// <summary>
    /// Represents the different logging categories.
    /// </summary>
    public enum LogCategory
    {
        General = 1,
        Debug = 2,
        Warning = 4,
        Error = 8,
        Critical = 16,
    }
}