aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Logging/LogCategory.cs
blob: 73ddebf7409e976b1fdc5780295d96e5e531fd72 (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
    {
        Info = 0,
        Warning = 1,
        Error = 2,
        Critical = 3,
        Debug = 4,
    }
}