Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
austinlparker committed May 28, 2019
1 parent ee64533 commit 5d9c340
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ internal sealed class SqlClientDiagnostics : DiagnosticListenerObserver

private readonly SqlClientDiagnosticOptions _options;

public SqlClientDiagnostics(ILoggerFactory loggerFactory, ITracer tracer, IOptions<SqlClientDiagnosticOptions> options)
: base(loggerFactory, tracer)
public SqlClientDiagnostics(ILoggerFactory loggerFactory, ITracer tracer, IOptions<SqlClientDiagnosticOptions> options,
IOptions<GenericEventOptions> genericEventOptions)
: base(loggerFactory, tracer, genericEventOptions.Value)
{
_options = options?.Value ?? throw new ArgumentNullException(nameof(options));
}
Expand Down

0 comments on commit 5d9c340

Please sign in to comment.