namespace NETMetaCoder.MSBuild
{
///
/// The logging level to use when printing messages produced by this library.
///
public enum LogLevel : byte
{
///
/// No informational logs are printed.
///
Quiet,
///
/// Only information in the form of a summary and once-off messages are logged.
///
Normal,
///
/// Messages produced by looping over collections and detailed descriptions of this library's actions are
/// logged.
///
Loud
}
}