Skip to content

Commit

Permalink
Update SqliteLoggerFactory.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
aritchie committed Jul 3, 2024
1 parent e5c915a commit acba550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shiny.Logging.Sqlite/SqliteLoggerFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ public SqliteLoggerProvider(LogLevel logLevel, LoggingSqliteConnection conn)
this.conn = conn;
}

public ILogger CreateLogger(string categoryName) => new SqliteLogger(this.logLevel, this.conn);
public ILogger CreateLogger(string categoryName) => new SqliteLogger(categoryName, this.logLevel, this.conn);
public void Dispose() { }
}

0 comments on commit acba550

Please sign in to comment.