12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- #endregion
- using System.Collections.Generic;
- namespace Wayne.Lib.Log
- {
-
-
-
- public abstract class ExternalLogWriter
- {
- #region Properties
-
-
-
- public abstract string ExternalLogType { get; }
-
-
-
- public abstract string ExternalLogName { get; }
-
-
-
- public abstract bool Active { get; }
- #endregion
- #region Methods
- internal void InitParametersInternal(Dictionary<string, string> dictionary)
- {
- InitParameters(dictionary);
- }
- internal void LogInternal(LogEntry logEntry, string formattedText)
- {
- Log(logEntry, formattedText);
- }
-
-
-
-
- protected LogTextWritingParameters GetExternalLoggerWritingParameters()
- {
- return null;
- }
-
-
-
-
- protected abstract void InitParameters(Dictionary<string, string> dictionary);
-
-
-
-
-
- protected abstract void Log(LogEntry logEntry, string formattedText);
- #endregion
- }
- }
|