ExtremelySimpleLogger 1.2.4-9

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 12 12/01/2023
1.4.0-ci.0 11 12/01/2023
1.3.3-ci.0 10 11/30/2023
1.3.2-ci.0 9 11/30/2023
1.3.1-ci.0 12 11/30/2023
1.3.0-15 27 05/08/2023
1.3.0-14 24 05/08/2023
1.3.0-13 50 10/05/2022
1.2.5-12 25 10/05/2022
1.2.5-11 28 10/05/2022
1.2.5-10 149 01/17/2022
1.2.4-9 104 01/17/2022
1.2.4-8 102 12/29/2021
1.2.4-7 108 12/29/2021
1.2.3-8 121 12/29/2021
1.2.3-6 103 12/29/2021
1.2.3-5 118 12/29/2021
1.2.3-4 108 12/29/2021
1.2.3-3 95 12/29/2021
1.2.3-2 105 12/29/2021
1.2.2-7 112 12/29/2021
1.2.2-6 99 12/29/2021
1.2.1-5 106 12/29/2021
1.2.1-4 105 12/29/2021
1.2.0-3 105 12/29/2021
1.2.0-2 100 12/29/2021
1.2.0-1 102 12/29/2021