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
Loading
Source code
public Logger(ILogger<Logger> logger)
Type |
Name |
Description |
ILogger <Logger > |
logger |
|
Source code
public virtual void WriteVerbose(string msg)
Type |
Name |
Description |
string |
msg |
|
Source code
public virtual void WriteDebug(string msg)
Type |
Name |
Description |
string |
msg |
|
Source code
public virtual void WriteError(string msg)
Type |
Name |
Description |
string |
msg |
|
Source code
public virtual void WriteInfo(string msg)
Type |
Name |
Description |
string |
msg |
|
Source code
public virtual void WriteWarning(string msg)
Type |
Name |
Description |
string |
msg |
|
Source code
public virtual void WriteAssert(bool condition, string msg)
Type |
Name |
Description |
bool |
condition |
|
string |
msg |
|
Generated with ModularDoc