123456789101112131415161718192021222324 |
- namespace Wayne.Lib.Log
- {
- /// <summary>
- /// Internal LogEntry for DebugMarking.
- /// </summary>
- internal class DebugMarkerLogEntry : LogEntry
- {
- #region Static Fields
- private static IIdentifiableEntity debugMarkerLogEntity = new IdentifiableEntity(IdentifiableEntity.NoId, "DebugMarker", string.Empty, null);
- private static string debugMarkerLine = "###########################################################";
- #endregion
- #region Construction
- public DebugMarkerLogEntry(string debugMarker)
- : base(debugMarkerLogEntity, new StringLogObject(debugMarkerLine, debugMarker, debugMarkerLine))
- {
- }
- #endregion
- }
- }
|