The logger class allows internal logging in the GameDB classes to be redirected to any destination required ie. Unity console, file on disk or terminal output.
More...
|
virtual void | Log (string message) |
| Used to log general information from internal classes. More...
|
|
virtual void | LogError (string message) |
| Used to log errors from internal classes. More...
|
|
virtual void | LogException (Exception e) |
| Used to log exceptions from internal classes. More...
|
|
The logger class allows internal logging in the GameDB classes to be redirected to any destination required ie. Unity console, file on disk or terminal output.
◆ Log()
virtual void GameDBLibrary.Logger.Log |
( |
string |
message | ) |
|
|
virtual |
Used to log general information from internal classes.
- Parameters
-
message | The message to log. |
◆ LogError()
virtual void GameDBLibrary.Logger.LogError |
( |
string |
message | ) |
|
|
virtual |
Used to log errors from internal classes.
- Parameters
-
message | The message to log. |
◆ LogException()
virtual void GameDBLibrary.Logger.LogException |
( |
Exception |
e | ) |
|
|
virtual |
Used to log exceptions from internal classes.
- Parameters
-