microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Common/Logging/LoggingSettings.cs

10lines · modeblame

82a4e3c3Rajan1 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License.
3
73e7847aAlex Acebo1 years ago4namespace Microsoft.Teams.Common.Logging;
5
6public class LoggingSettings
7{
bfbe94f7Alex Acebo1 years ago8public string Enable { get; set; } = "*";
9public LogLevel Level { get; set; } = LogLevel.Info;
73e7847aAlex Acebo1 years ago10}