Catel.Logging.Log.Log C# (CSharp) Метод

Log() публичный Метод

Initializes a new instance of the Log class.
The is null.
public Log ( Type targetType ) : System
targetType System.Type The type for which this log is intented.
Результат System
        public Log(Type targetType)
        {
            Argument.IsNotNull("targetType", targetType);

            TargetType = targetType;
            Tag = targetType.FullName;

            IsCatelLogging = targetType.IsCatelType();
        }
        #endregion