上海虹口龙之梦项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

139 lines
4.6 KiB

using System;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
namespace UniRx.Diagnostics
{
public partial class Logger
{
static bool isInitialized = false;
static bool isDebugBuild = false;
public string Name { get; private set; }
protected readonly Action<LogEntry> logPublisher;
public Logger(string loggerName)
{
this.Name = loggerName;
this.logPublisher = ObservableLogger.RegisterLogger(this);
}
/// <summary>Output LogType.Log but only enables isDebugBuild</summary>
public virtual void Debug(object message, UnityEngine.Object context = null)
{
if (!isInitialized)
{
isInitialized = true;
isDebugBuild = UnityEngine.Debug.isDebugBuild;
}
if (isDebugBuild)
{
logPublisher(new LogEntry(
message: (message != null) ? message.ToString() : "",
logType: LogType.Log,
timestamp: DateTime.Now,
loggerName: Name,
context: context));
}
}
/// <summary>Output LogType.Log but only enables isDebugBuild</summary>
public virtual void DebugFormat(string format, params object[] args)
{
if (!isInitialized)
{
isInitialized = true;
isDebugBuild = UnityEngine.Debug.isDebugBuild;
}
if (isDebugBuild)
{
logPublisher(new LogEntry(
message: (format != null) ? string.Format(format, args) : "",
logType: LogType.Log,
timestamp: DateTime.Now,
loggerName: Name,
context: null));
}
}
public virtual void Log(object message, UnityEngine.Object context = null)
{
logPublisher(new LogEntry(
message: (message != null) ? message.ToString() : "",
logType: LogType.Log,
timestamp: DateTime.Now,
loggerName: Name,
context: context));
}
public virtual void LogFormat(string format, params object[] args)
{
logPublisher(new LogEntry(
message: (format != null) ? string.Format(format, args) : "",
logType: LogType.Log,
timestamp: DateTime.Now,
loggerName: Name,
context: null));
}
public virtual void Warning(object message, UnityEngine.Object context = null)
{
logPublisher(new LogEntry(
message: (message != null) ? message.ToString() : "",
logType: LogType.Warning,
timestamp: DateTime.Now,
loggerName: Name,
context: context));
}
public virtual void WarningFormat(string format, params object[] args)
{
logPublisher(new LogEntry(
message: (format != null) ? string.Format(format, args) : "",
logType: LogType.Warning,
timestamp: DateTime.Now,
loggerName: Name,
context: null));
}
public virtual void Error(object message, UnityEngine.Object context = null)
{
logPublisher(new LogEntry(
message: (message != null) ? message.ToString() : "",
logType: LogType.Error,
timestamp: DateTime.Now,
loggerName: Name,
context: context));
}
public virtual void ErrorFormat(string format, params object[] args)
{
logPublisher(new LogEntry(
message: (format != null) ? string.Format(format, args) : "",
logType: LogType.Error,
timestamp: DateTime.Now,
loggerName: Name,
context: null));
}
public virtual void Exception(Exception exception, UnityEngine.Object context = null)
{
logPublisher(new LogEntry(
message: (exception != null) ? exception.ToString() : "",
exception: exception,
logType: LogType.Exception,
timestamp: DateTime.Now,
loggerName: Name,
context: context));
}
/// <summary>Publish raw LogEntry.</summary>
public virtual void Raw(LogEntry logEntry)
{
logPublisher(logEntry);
}
}
}