Adventure.Works.LiveDemo.TSQLSyntaxLogger.LogTSQL C# (CSharp) Method

LogTSQL() private method

private LogTSQL ( string command, string commandText ) : void
command string
commandText string
return void
        private void LogTSQL(string command, string commandText)
        {
            var line = $"Intercepted on : {command} : - {commandText}";
            this.Log(line);
        }