diff --git a/src/Common.Logging/Logging/Simple/ConsoleOutLoggerFactoryAdapter.cs b/src/Common.Logging/Logging/Simple/ConsoleOutLoggerFactoryAdapter.cs index be3b873..facf545 100644 --- a/src/Common.Logging/Logging/Simple/ConsoleOutLoggerFactoryAdapter.cs +++ b/src/Common.Logging/Logging/Simple/ConsoleOutLoggerFactoryAdapter.cs @@ -85,8 +85,10 @@ public ConsoleOutLoggerFactoryAdapter() /// The name value collection, typically specified by the user in /// a configuration section named common/logging. public ConsoleOutLoggerFactoryAdapter(NameValueCollection properties) - : base(properties) - { } + : base(properties) + { + this.useColor = ArgUtils.TryParse(false, ArgUtils.GetValue(properties, "useColor")); + } #if !SILVERLIGHT ///