microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Common/Logging/LoggingSettings.cs
10lines · modeblame
82a4e3c3Rajan1 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. | |
| 3 | | |
73e7847aAlex Acebo1 years ago | 4 | namespace Microsoft.Teams.Common.Logging; |
| 5 | | |
| 6 | public class LoggingSettings | |
| 7 | { | |
bfbe94f7Alex Acebo1 years ago | 8 | public string Enable { get; set; } = "*"; |
| 9 | public LogLevel Level { get; set; } = LogLevel.Info; | |
73e7847aAlex Acebo1 years ago | 10 | } |