//********************************************************* // // Copyright (c) Microsoft. All rights reserved. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. // //********************************************************* #pragma once namespace Microsoft { namespace Xbox { namespace Samples { namespace NetworkMesh { /// /// Specifies what messages to output for the Xbox Services classes /// PUBLIC_ONLY_IN_DEVKIT enum class XboxNetworkMeshDiagnosticsTraceLevel { /// /// Output no tracing and debugging messages. /// Off = 0, /// /// Output error-handling messages. /// Error, /// /// Output warnings and error-handling messages. /// Warning, /// /// Output informational messages, warnings, and error-handling messages. /// Info, /// /// Output all debugging and tracing messages. /// Verbose }; }}}}