- LogBook is a really small and simple .NET library that plugs into any .NET application, such as an MVC Website.
- LogBook provides a LogHandler which can be called from your code, the LogHandler manages writing Log Entries into your database and allows you to read back the Log Entries in a variety of ways.
- Logbook integrates with SQL Server and manages its schema automatically, so no nasty scripts to run.
- Review the Lookbook.Demo project for a working example of the project.
- Add LogBook to your Project using the Nuget Package Manager (NPM) Install-Package tommcclean.LogBook
- Add a Database Connection String to your Configuration File called LogBookEntityModel
- Initialise a LogHandler: var logHandler = new LogHandler();
- Write a Log Entry: logHandler.WriteLog(LogType.Information, "Welcome to LogBook", string.Empty);
- Read Log Entries from the Database: var logEntries = logHandler.ReadLatestLogEntries(100);