Class DebugService
Provides debugging services to log messages internally and via a provided logger.
Inheritance
ServiceFactoryEx<DebugService, object, object, object, object, object, object, object, object, object>
DebugService
Inherited Members
Namespace: Coree.NETStandard.Services.DebugManagement
Assembly: Coree.NETStandard.dll
Syntax
public class DebugService : ServiceFactoryEx<DebugService>, IDisposable, IDebugService
Remarks
This service should be used for development and debugging purposes only. It is designed to extend easily and integrates with the standard logging infrastructure.
Constructors
| Edit this page View SourceDebugService(ILogger<DebugService>)
Initializes a new instance of the DebugService class.
Declaration
public DebugService(ILogger<DebugService> logger)
Parameters
Type | Name | Description |
---|---|---|
ILogger<DebugService> | logger | The logger used to log messages. |
Remarks
The constructor writes a debug line to indicate its invocation.
Methods
| Edit this page View SourceLogMessage(string)
Logs a message using the configured logger and writes it to the debug output.
Declaration
public void LogMessage(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message to log. |
Remarks
This method provides dual logging through the ILogger interface and System.Diagnostics.Debug.