public string GetLogString(object obj, PropertyInfo propertyInfo)
        {
            if (obj != null && propertyInfo != null)
            {
                var value = LogExtensionHelper.GetString(propertyInfo.GetValue(obj, null));
                return(GetLogString(propertyInfo.Name, value));
            }

            return("");
        }