4a2233e167
* use new containerized SDK * Use containered Tracing and Logging * Autocad loads * logging builds * fmt * Remove console logger and hook up merged logging * cleanup * Clean up logging * use nuget * Add Logging project to solution then consolidate getting assembly version * don't need this project anymore * merge fixes * add new seq config --------- Co-authored-by: Jedd Morgan <45512892+JR-Morgan@users.noreply.github.com>
40 lines
782 B
C#
40 lines
782 B
C#
namespace Speckle.Connectors.Logging;
|
|
|
|
public enum SpeckleLogLevel
|
|
{
|
|
/// <summary>
|
|
/// Anything and everything you might want to know about
|
|
/// a running block of code.
|
|
/// </summary>
|
|
Verbose,
|
|
|
|
/// <summary>
|
|
/// Internal system events that aren't necessarily
|
|
/// observable from the outside.
|
|
/// </summary>
|
|
Debug,
|
|
|
|
/// <summary>
|
|
/// The lifeblood of operational intelligence - things
|
|
/// happen.
|
|
/// </summary>
|
|
Information,
|
|
|
|
/// <summary>
|
|
/// Service is degraded or endangered.
|
|
/// </summary>
|
|
Warning,
|
|
|
|
/// <summary>
|
|
/// Functionality is unavailable, invariants are broken
|
|
/// or data is lost.
|
|
/// </summary>
|
|
Error,
|
|
|
|
/// <summary>
|
|
/// If you have a pager, it goes off when one of these
|
|
/// occurs.
|
|
/// </summary>
|
|
Fatal
|
|
}
|