mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-03 23:49:44 +00:00
17 lines
432 B
C#
17 lines
432 B
C#
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
namespace Microsoft.ML.OnnxRuntime
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Log severity levels
|
||
|
|
/// </summary>
|
||
|
|
public enum OrtLoggingLevel
|
||
|
|
{
|
||
|
|
ORT_LOGGING_LEVEL_VERBOSE = 0,
|
||
|
|
ORT_LOGGING_LEVEL_INFO = 1,
|
||
|
|
ORT_LOGGING_LEVEL_WARNING = 2,
|
||
|
|
ORT_LOGGING_LEVEL_ERROR = 3,
|
||
|
|
ORT_LOGGING_LEVEL_FATAL = 4,
|
||
|
|
}
|
||
|
|
}
|