public bool GetEntry(out ActivityLogEntry entry)
 {
     return m_LogEntries.TryTake(out entry, 0);
 }
 public bool AddEntry(ActivityLogEntry entry)
 {
     return m_LogEntries.TryAdd(entry, 0);
 }