Logger
Initializes a new instance of the Logger.
Read time 1 minuteLast updated 4 days ago
Definition
public class Logger : ILogger, ILogHandler
Examples
using UnityEngine;using System.Collections;using System.IO;using System;public class MyLogHandler : ILogHandler{ public void LogFormat(LogType logType, UnityEngine.Object context, string format, params object[] args) { Debug.unityLogger.logHandler.LogFormat(logType, context, format, args); } public void LogException(Exception exception, UnityEngine.Object context) { Debug.unityLogger.LogException(exception, context); }}public class MyGameClass : MonoBehaviour{ private static string kTAG = "MyGameTag"; private Logger myLogger; void Start() { myLogger = new Logger(new MyLogHandler()); myLogger.Log(kTAG, "MyGameClass Start."); }}
Constructors
Properties
Methods