Aspectacular.SqlConnectionAttributesAspect.LogAttributeApplication C# (CSharp) Method

LogAttributeApplication() private method

Attention: this is a callback method that could be called after aspect is used & dumped.
private LogAttributeApplication ( ISqlServerConnectionProvider sqlConnProvider ) : void
sqlConnProvider ISqlServerConnectionProvider
return void
        private void LogAttributeApplication(ISqlServerConnectionProvider sqlConnProvider)
        {
            if(this.Proxy == null)
                return;

            this.LogInformationWithKey("Injected SQL Connection Attributes",
                "Added following SQL connection attributes to \"{0}\":\r\n{1}", sqlConnProvider.GetType().FormatCSharp(), SqlUtils.SqlConnectionAttributes);
        }