Microsoft.Data.SqlClient.SqlClientLogger
Represents a SQL client logger.
namespace Microsoft.Data.SqlClient
{
public class SqlClientLogger
{
public bool IsLoggingEnabled { get; }
public SqlClientLogger();
public bool LogAssert(bool value, string type, string method, string message);
public void LogError(string type, string method, string message);
public void LogInfo(string type, string method, string message);
public void LogWarning(string type, string method, string message);
}
}