Interface IAudioSourceLogger
Provides access to logging facilities for a audio source.
Namespace: AudioBand.AudioSource
Assembly: AudioBand.AudioSource.dll
Syntax
public interface IAudioSourceLogger
Methods
| Improve this Doc View SourceDebug(Object)
Log a debug level message.
Declaration
void Debug(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value | Value to be logged. |
Debug(String)
Log a debug level message.
Declaration
void Debug(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message to be logged. |
Error(Object)
Log an error level message.
Declaration
void Error(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value | Value to be logged. |
Error(String)
Log an error level message.
Declaration
void Error(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message to be logged. |
Info(Object)
Log an info level message.
Declaration
void Info(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value | Value to be logged. |
Info(String)
Log an info level message.
Declaration
void Info(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message to be logged. |
Warn(Object)
Log a warning level message.
Declaration
void Warn(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value | Value to be logged. |
Warn(String)
Log a warning level message.
Declaration
void Warn(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | Message to be logged. |