LogEntryExtensions.cs 329 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace UniRx.Diagnostics
  5. {
  6. public static partial class LogEntryExtensions
  7. {
  8. public static IDisposable LogToUnityDebug(this IObservable<LogEntry> source)
  9. {
  10. return source.Subscribe(new UnityDebugSink());
  11. }
  12. }
  13. }