-
-
Notifications
You must be signed in to change notification settings - Fork 44
iw4madminapplication Logger
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application
IW4MAdmin.Application.Logger[[Logger]]
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.ILogger[[ILogger]]
class SharedLibraryCore.Interfaces.ILogger interfaceStyle;
end
SharedLibraryCore.Interfaces.ILogger --> IW4MAdmin.Application.Logger
Returns | Name |
---|---|
void |
WriteAssert (bool condition, string msg) |
void |
WriteDebug (string msg) |
void |
WriteError (string msg) |
void |
WriteInfo (string msg) |
void |
WriteVerbose (string msg) |
void |
WriteWarning (string msg) |
public Logger(ILogger<Logger> logger)
Type | Name | Description |
---|---|---|
ILogger <Logger > |
logger |
public virtual void WriteVerbose(string msg)
Type | Name | Description |
---|---|---|
string |
msg |
public virtual void WriteDebug(string msg)
Type | Name | Description |
---|---|---|
string |
msg |
public virtual void WriteError(string msg)
Type | Name | Description |
---|---|---|
string |
msg |
public virtual void WriteInfo(string msg)
Type | Name | Description |
---|---|---|
string |
msg |
public virtual void WriteWarning(string msg)
Type | Name | Description |
---|---|---|
string |
msg |
public virtual void WriteAssert(bool condition, string msg)
Type | Name | Description |
---|---|---|
bool |
condition | |
string |
msg |
Generated with ModularDoc