J4JSoftware.Logging 4.2.1

Suggested Alternatives

J4JSoftware.LoggingSerilog

Additional Details

I substantially redesigned the original J4JLogger package and extended it to include the Microsoft logging system as well.

dotnet add package J4JSoftware.Logging --version 4.2.1
NuGet\Install-Package J4JSoftware.Logging -Version 4.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="J4JSoftware.Logging" Version="4.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add J4JSoftware.Logging --version 4.2.1
#r "nuget: J4JSoftware.Logging, 4.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install J4JSoftware.Logging as a Cake Addin
#addin nuget:?package=J4JSoftware.Logging&version=4.2.1

// Install J4JSoftware.Logging as a Cake Tool
#tool nuget:?package=J4JSoftware.Logging&version=4.2.1

J4JLogging


As of 2023 April 4 I am no longer developing this library.

The reason is simple: I learned more about how Serilog works and realized there was a much easier way of implementing the same functionality 😃.

Take a look at J4JLoggerEnhancements for a new, slimmer approach for doing what J4JLogging does.


A Net library which wraps Serilog's ILogger and extends it by reporting source code information.

Licensed under GNU GPL-v3.0. See the license file for details.

Nuget

TL;DR

using System;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using J4JSoftware.Logging;
using Microsoft.Extensions.Configuration;
using Serilog;

namespace ConfigurationBasedExample
{
    // shows how to use J4JLogger with a configuration file
    // see the ConfigurationBasedExample project for other files and details
    class Program
    {
        static void Main(string[] args)
        {
            var loggerConfig = new J4JLoggerConfiguration();

            var configRoot = new ConfigurationBuilder()
                .AddJsonFile( Path.Combine( Environment.CurrentDirectory, "appConfig.json" ), true )
                .Build();

            loggerConfig.SerilogConfiguration
                .ReadFrom
                .Configuration( configRoot );
                
            var logger = loggerConfig.CreateLogger();
            logger.SetLoggedType(typeof(Program));

            logger.Information("This is an Informational logging message");
            logger.Fatal("This is a Fatal logging message");
        }
    }
}

The console output looks like this: config based example output

The log file, log20210801.txt, looks like this:

2021-09-15 10:14:59.173 -07:00 [INF] This is an Informational logging message ConfigurationBasedExample.Program::Main (C:\Programming\J4JLogging\examples\ConfigurationBasedExample\Program.cs:32) 
2021-09-15 10:14:59.238 -07:00 [FTL] This is a Fatal logging message ConfigurationBasedExample.Program::Main (C:\Programming\J4JLogging\examples\ConfigurationBasedExample\Program.cs:33) 

Your log file's name will be different because, by default, the log file rolls daily and the last day logging took place will be embedded in the file name.

There is a simple way of trimming the logged source code file paths to make them relative to the project directory path. See trimming paths for how to do this.

You can read about how to use the Serilog IConfiguration-based configuration system here.

Important Note

There is one important difference in how you call the logging methods from the Serilog standard.

If you pass nothing but simple strings to the methods as property values you must specify the types of the propertyValue arguments explicitly in the method call.

An example:

string someStringValue = "abcd";
_logger.Debug<string>("The value of that argument is {0}", someStringValue);

This requirement comes about because the memberName, srcPath and srcLine arguments are automagically set for you by the compiler. The fact the memberName and srcPath arguments of the logging methods are strings makes them "collide" with string arguments you may specify. That makes explict type specifications for the arguments necessary when the compiler can't figure out what you mean...which is all too common 😃.

Table of Contents

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on J4JSoftware.Logging:

Package Downloads
J4JSoftware.GeoProcessor

a library for processing GPX, KML and KMZ files, and snapping GPS tracks to roadways

J4JSoftware.Logging.Twilio

Extends the J4JLogger library to support SMS logging via Twilio

J4JSoftware.GeoProcessorApp

a console application for processing GPX, KML and KMZ files, and snapping GPS tracks to roadways

J4JSoftware.GeoProcessorWPF

a WPF application for processing GPX, KML and KMZ files, and snapping GPS tracks to roadways

J4JSoftware.WpFormsSurvey

utilities for exporting WPForms forms and survey responses to Excel (.xlsx) files

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.2.1 220 4/4/2023
4.2.0 610 12/27/2022
4.1.2 793 2/28/2022
4.1.1 620 2/28/2022
4.1.0 740 11/12/2021
4.0.1 1,586 9/29/2021
4.0.0 1,670 9/28/2021
3.2.0 1,580 2/3/2021
3.1.0 1,078 1/21/2021
3.0.0 1,478 1/9/2021
2.5.1 678 6/30/2020
2.5.0 746 6/30/2020
1.0.0 498 6/30/2020

updated packages, announced end of development