1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-23 07:44:19 +00:00
better-tee/Assets/Packages/Mirror/Runtime/Transport/Telepathy/Logger.cs

15 lines
543 B
C#
Raw Normal View History

2019-09-15 22:28:36 +00:00
// A simple logger class that uses Console.WriteLine by default.
// Can also do Logger.LogMethod = Debug.Log for Unity etc.
// (this way we don't have to depend on UnityEngine.DLL and don't need a
// different version for every UnityEngine version here)
using System;
namespace Telepathy
{
public static class Logger
{
public static Action<string> Log = Console.WriteLine;
public static Action<string> LogWarning = Console.WriteLine;
public static Action<string> LogError = Console.Error.WriteLine;
}
}