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