GameDB  1.6.0
GameDB Pro is a plugin that provides an easy to use and powerful game and meta data editor
GameDBLibrary.Logger Class Reference

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...

Inheritance diagram for GameDBLibrary.Logger:
GameDBCodegenExample.GameDB.UnityLogger

Public Member Functions

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...
 

Detailed Description

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.

Member Function Documentation

◆ Log()

virtual void GameDBLibrary.Logger.Log ( string  message)
virtual

Used to log general information from internal classes.

Parameters
messageThe message to log.

◆ LogError()

virtual void GameDBLibrary.Logger.LogError ( string  message)
virtual

Used to log errors from internal classes.

Parameters
messageThe message to log.

◆ LogException()

virtual void GameDBLibrary.Logger.LogException ( Exception  e)
virtual

Used to log exceptions from internal classes.

Parameters
eThe exception to log.