Class TraceLogger
Implementation of the One Compute
Inheritance
System.Object
TraceLogger
Namespace: DNVGL.One.Compute.Scheduling.Orchestrator
Assembly: DNVGL.One.Compute.Scheduling.dll
Syntax
public class TraceLogger : ILogger
Constructors
View SourceTraceLogger(String)
Initializes a new instance of the TraceLogger class.
Declaration
public TraceLogger(string source)
Parameters
Type | Name | Description |
---|---|---|
System.String | source | The source. |
Properties
View SourceLoggingSource
Gets the logging source.
Declaration
public string LoggingSource { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
View SourceLogError(String)
Logs the error.
Declaration
public void LogError(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
LogErrorAsync(String)
Logs the error.
Declaration
public async Task LogErrorAsync(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Returns
Type | Description |
---|---|
Task | Asynchronous task. |
LogInformation(String)
Logs the information.
Declaration
public void LogInformation(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
LogInformationAsync(String)
Logs the information.
Declaration
public async Task LogInformationAsync(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Returns
Type | Description |
---|---|
Task | Asynchronous task. |
LogWarning(String)
Logs the warning.
Declaration
public void LogWarning(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
LogWarningAsync(String)
Logs the warning.
Declaration
public async Task LogWarningAsync(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Returns
Type | Description |
---|---|
Task | Asynchronous task. |