DebugMarkerLogEntry.cs 721 B

123456789101112131415161718192021222324
  1. namespace Wayne.Lib.Log
  2. {
  3. /// <summary>
  4. /// Internal LogEntry for DebugMarking.
  5. /// </summary>
  6. internal class DebugMarkerLogEntry : LogEntry
  7. {
  8. #region Static Fields
  9. private static IIdentifiableEntity debugMarkerLogEntity = new IdentifiableEntity(IdentifiableEntity.NoId, "DebugMarker", string.Empty, null);
  10. private static string debugMarkerLine = "###########################################################";
  11. #endregion
  12. #region Construction
  13. public DebugMarkerLogEntry(string debugMarker)
  14. : base(debugMarkerLogEntity, new StringLogObject(debugMarkerLine, debugMarker, debugMarkerLine))
  15. {
  16. }
  17. #endregion
  18. }
  19. }