Logging.cs 556 B

12345678910111213141516171819
  1. using System;
  2. using UnityEngine;
  3. namespace UnityEditor.Graphing
  4. {
  5. class ConsoleLogHandler : ILogHandler
  6. {
  7. public void LogFormat(LogType logType, UnityEngine.Object context, string format, params object[] args)
  8. {
  9. var formatted = string.Format(format, args);
  10. Console.WriteLine("{0}:{1} - {2}", logType, context, formatted);
  11. }
  12. public void LogException(Exception exception, UnityEngine.Object context)
  13. {
  14. Console.WriteLine("{0} - {1}", context, exception);
  15. }
  16. }
  17. }