RelationalLoggerExtensions.ConnectionError Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Logs for the ConnectionError event.
public static void ConnectionError (this Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger<Microsoft.EntityFrameworkCore.DbLoggerCategory.Database.Connection> diagnostics, Microsoft.EntityFrameworkCore.Storage.IRelationalConnection connection, Exception exception, DateTimeOffset startTime, TimeSpan duration, bool logErrorAsDebug);
static member ConnectionError : Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger<Microsoft.EntityFrameworkCore.DbLoggerCategory.Database.Connection> * Microsoft.EntityFrameworkCore.Storage.IRelationalConnection * Exception * DateTimeOffset * TimeSpan * bool -> unit
<Extension()>
Public Sub ConnectionError (diagnostics As IDiagnosticsLogger(Of DbLoggerCategory.Database.Connection), connection As IRelationalConnection, exception As Exception, startTime As DateTimeOffset, duration As TimeSpan, logErrorAsDebug As Boolean)
Parameters
- diagnostics
- IDiagnosticsLogger<DbLoggerCategory.Database.Connection>
The diagnostics logger to use.
- connection
- IRelationalConnection
The connection.
- exception
- Exception
The exception representing the error.
- startTime
- DateTimeOffset
The time that the operation was started.
- duration
- TimeSpan
The elapsed time before the operation failed.
- logErrorAsDebug
- Boolean
A flag indicating the exception is being handled and so it should be logged at Debug level.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework