summaryrefslogtreecommitdiffstats
path: root/tools/Sandcastle/Source/CommandLine/LogLevel.cs
blob: 223796e569f612baca03eba9a1ae89fcd831823f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Corporation.  All rights reserved.
//

using System;
using System.IO;
using System.Reflection;
using System.Xml.XPath;

namespace Microsoft.Ddue.Tools.CommandLine {


    public enum LogLevel {
        Info, Warn, Error
    }

}