Files
speckle-sharp-connectors/Sdk/Speckle.Connectors.Logging/LoggingActivityStatusCode.cs
T
Adam Hathcock 4a2233e167 SDK is non static and logging/tracing controls are moved to the connectors (#239)
* 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>
2024-09-18 14:13:18 +00:00

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,
}