Amido.PreProcessor.Cmd.PropertyManager.LogDictionaryDebug C# (CSharp) Метод

LogDictionaryDebug() приватный Метод

private LogDictionaryDebug ( string>.IDictionary dictionary, string dictionaryName ) : void
dictionary string>.IDictionary
dictionaryName string
Результат void
        private void LogDictionaryDebug(IDictionary<string, string> dictionary, string dictionaryName)
        {
            if (log.IsDebugEnabled)
            {
                log.DebugFormat("{0} properties are: ", dictionaryName);
                foreach (var item in dictionary)
                {
                    log.DebugFormat("name:{0} value:{1}", item.Key, item.Value);
                }
            }
        }