/
aprogrammer
/
serilog
Обзор
Документация
Войти
/
aprogrammer
/
serilog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/Serilog/Events/LevelAlias.cs
41 строка
1 KB
Nicholas Blumhardt
Add `LevelAlias.Off`; fixes #1684 (#1910)
29 май 2023, 03:34
Не верифицирован
29 май 2023, 03:34
3208c64
Код
Авторство
О чём код?
// Copyright 2013-2015 Serilog Contributors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. namespace Serilog.Events; /// <summary> /// Descriptive aliases for <see cref="LogEventLevel"/>. /// </summary> /// <remarks>These do not appear as members of the enumeration /// as duplicated underlying values result in issues when presenting /// enum values with <see cref="object.ToString()"/>.</remarks> public static class LevelAlias { /// <summary> /// The least significant level of event. /// </summary> public const LogEventLevel Minimum = LogEventLevel.Verbose; /// <summary> /// The most significant level of event. /// </summary> public const LogEventLevel Maximum = LogEventLevel.Fatal; /// <summary> /// A value that, when used as a "minimum" level, will result in no /// events being emitted. /// </summary> /// <remarks>It is never correct to construct a <see cref="LogEvent"/> with this value.</remarks> public const LogEventLevel Off = Maximum + 1; }