| File: Output\OutputLevel.cs | Web Access |
| Project: src\vstest\src\Microsoft.TestPlatform.CoreUtilities\Microsoft.TestPlatform.CoreUtilities.csproj (Microsoft.TestPlatform.CoreUtilities) |
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.VisualStudio.TestPlatform.Utilities; /// <summary> /// Defines the level of output. /// </summary> public enum OutputLevel { /// <summary> /// Informational message. /// </summary> Information = 0, /// <summary> /// Warning message. /// </summary> Warning = 1, /// <summary> /// Error message. /// </summary> Error = 2, }