예제 #1
0
        /// <summary>
        /// Constructs and instance of this class
        /// </summary>
        public PoshConsoleLogWriter(string format)
        {
            _format = format == null ? TextFormatter.DefaultFormat : FormattedString.Parse(format, null);

            Settings = new PoshConsoleLogWriterSettings
            {
                AbbreviateClassNames = false
            };

            Console.BackgroundColor = ConsoleColor.Black;
        }
예제 #2
0
        /// <summary>
        /// Constructs and instance of this class
        /// </summary>
        public PoshConsoleLogWriter(string format)
        {
            _format = format == null ? TextFormatter.DefaultFormat : FormattedString.Parse(format, null);

             Settings = new PoshConsoleLogWriterSettings
             {
            AbbreviateClassNames = false
             };

             Console.BackgroundColor = ConsoleColor.Black;
        }