C# Class UberLoggerFile, UberLogger

A basic file logger backend
Inheritance: ILogger
Mostrar archivo Open project: bbbscarter/UberLogger

Public Methods

Method Description
Log ( LogInfo, logInfo ) : void
UberLoggerFile ( string filename, bool includeCallStacks = true ) : System.IO

Constructor. Make sure to add it to UberLogger via Logger.AddLogger(); filename is relative to Application.persistentDataPath if includeCallStacks is true it will dump out the full callstack for all logs, at the expense of big log files.

Method Details

Log() public method

public Log ( LogInfo, logInfo ) : void
logInfo LogInfo,
return void

UberLoggerFile() public method

Constructor. Make sure to add it to UberLogger via Logger.AddLogger(); filename is relative to Application.persistentDataPath if includeCallStacks is true it will dump out the full callstack for all logs, at the expense of big log files.
public UberLoggerFile ( string filename, bool includeCallStacks = true ) : System.IO
filename string
includeCallStacks bool
return System.IO