Example #1
0
 /// <summary>Fires an event requesting all logging facilities to flush buffers. </summary>
 public void Flush()
 {
     AppEvents.OnFlushRequested();
     foreach (var linkedApp in LinkedApps)
     {
         linkedApp.Flush();
     }
 }
Example #2
0
 /// <summary>Fires an event requesting all logging facilities to flush buffers. </summary>
 public void Flush()
 {
     this.LogService.Flush();
     AppEvents.OnFlushRequested();
 }