bin/projects/dbatools/dbatools/dbaSystem/LogEntryType.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
using System;
namespace Sqlcollaborative.Dbatools.dbaSystem { /// <summary> /// The kind of information the logged entry was. /// </summary> [Flags] public enum LogEntryType { /// <summary> /// This entry wasn't written to any stream /// </summary> None = 0, /// <summary> /// A message that was written to the current host equivalent, if available also to the information stream /// </summary> Information = 1, /// <summary> /// A message that was written to the verbose stream /// </summary> Verbose = 2, /// <summary> /// A message that was written to the Debug stream /// </summary> Debug = 4, /// <summary> /// A message written to the warning stream /// </summary> Warning = 8 } } |