mirror of
https://github.com/Tribufu/TribufuDotNet
synced 2026-08-07 11:56:21 +00:00
* Migrate to new tribufu project structure * Update .gitignore * Remove old api files * Update Directory.Build.props * Rename solution
20 lines
269 B
C#
20 lines
269 B
C#
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
namespace Tribufu.Logging
|
|
{
|
|
public enum LogLevel : byte
|
|
{
|
|
Off = 0,
|
|
|
|
Error = 1,
|
|
|
|
Warn = 2,
|
|
|
|
Info = 3,
|
|
|
|
Debug = 4,
|
|
|
|
Trace = 5,
|
|
}
|
|
}
|