A very simple logger for .NET programs
Go to file
Ell 5ca1073125 1.4.1 2023-12-01 13:19:14 +01:00
.github Create FUNDING.yml 2021-11-08 15:52:55 +01:00
.woodpecker old command 2023-11-30 22:07:59 +01:00
ExtremelySimpleLogger 1.4.1 2023-12-01 13:19:14 +01:00
Sample allow using ANSI escape sequences for the console sink 2023-12-01 13:17:46 +01:00
.gitignore Initial commit 2020-07-23 02:24:18 +02:00
ExtremelySimpleLogger.sln basic implementation 2020-07-23 02:26:45 +02:00
LICENSE Create LICENSE 2020-07-23 02:57:38 +02:00
Logo.png decrease the logo's size 2021-11-04 18:34:12 +01:00
README.md added readme and logo to package 2021-11-04 18:32:37 +01:00

README.md

The ExtremelySimpleLogger logo

ExtremelySimpleLogger is a very simple logger for .NET programs.

To set up an extremely simple logger, add a reference to the NuGet package to your project file. Remember to change the VERSION to the most recent one.

<ItemGroup>
    <PackageReference Include="ExtremelySimpleLogger" Version="VERSION" />
</ItemGroup>

Next, you have to create an instance of the Logger class:

var logger = new Logger {
    Name = "My Logger",
    Sinks = {
        new FileSink("Log.txt", append: true),
        new ConsoleSink()
    }
};

Since there are multiple ways for logging data to be processed, the logger needs to receive a set of Sink instances. By default, the following sinks are available:

  • FileSink, which outputs logging data to a file
  • ConsoleSink, which outputs logging data to the default console
  • DirectorySink, which outputs logging data to a set of files and automatically manages how many old logs are kept
  • StringSink, which stores logging data in a string

There are multiple ways to easily log messages with your newly created logger:

// Logging info
logger.Log(LogLevel.Info, "Some information");
logger.Info("Some information, but shorter");

// Logging exceptions
try {
    // some dangerous code
} catch (Exception e) {
    logger.Error("An exception was thrown", e);
}

For more information, you can also check out the sample.