ExtremelySimpleLogger 1.2.4-8

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.

No packages depend on ExtremelySimpleLogger.

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
1.4.1-ci.0 64 12/01/2023
1.4.0-ci.0 57 12/01/2023
1.3.3-ci.0 58 11/30/2023
1.3.2-ci.0 52 11/30/2023
1.3.1-ci.0 60 11/30/2023
1.3.0-15 75 05/08/2023
1.3.0-14 72 05/08/2023
1.3.0-13 92 10/05/2022
1.2.5-12 70 10/05/2022
1.2.5-11 58 10/05/2022
1.2.5-10 179 01/17/2022
1.2.4-9 144 01/17/2022
1.2.4-8 154 12/29/2021
1.2.4-7 137 12/29/2021
1.2.3-8 171 12/29/2021
1.2.3-6 134 12/29/2021
1.2.3-5 150 12/29/2021
1.2.3-4 154 12/29/2021
1.2.3-3 149 12/29/2021
1.2.3-2 135 12/29/2021
1.2.2-7 155 12/29/2021
1.2.2-6 133 12/29/2021
1.2.1-5 145 12/29/2021
1.2.1-4 151 12/29/2021
1.2.0-3 150 12/29/2021
1.2.0-2 136 12/29/2021
1.2.0-1 154 12/29/2021