Clears the log.
()
| 446 | /// Clears the log. |
| 447 | /// </summary> |
| 448 | public void Clear() |
| 449 | { |
| 450 | lock (_locker) |
| 451 | { |
| 452 | _pendingEntries.Clear(); |
| 453 | } |
| 454 | if (_entriesPanel == null) |
| 455 | return; |
| 456 | RemoveEntries(); |
| 457 | } |
| 458 | |
| 459 | /// <summary> |
| 460 | /// Adds the specified log entry. |
no outgoing calls
no test coverage detected