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>
14 lines
424 B
C#
14 lines
424 B
C#
namespace Speckle.Connectors.Logging;
|
|
|
|
public enum LoggingActivityStatusCode
|
|
{
|
|
/// <summary>Unset status code is the default value indicating the status code is not initialized.</summary>
|
|
Unset,
|
|
|
|
/// <summary>Status code indicating the operation has been validated and completed successfully.</summary>
|
|
Ok,
|
|
|
|
/// <summary>Status code indicating an error is encountered during the operation.</summary>
|
|
Error,
|
|
}
|