Coder Social home page Coder Social logo

serilog-sinks-nlog's People

Contributors

hakanl avatar jeremymeng avatar nblumhardt avatar pvlerick avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

serilog-sinks-nlog's Issues

Empty lines in log

Because of Serilog can't getting their rolling logfiles together I thought, why not let the File part be handled by NLog which has no problem with it.

Which at least getting the rolling log part handled, but now have empty lines because the Serilog sink probably also returns it with a line ending, and NLog adding one too.

nlog.config

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      autoReload="true"
      internalLogLevel="info"
      internalLogFile="c:\temp\internal-nlog.txt">

	<targets>
		<target xsi:type="File" name="mainLogFile"
				fileName="Log_Main.log"
				archiveFileName="Archives\Main.{##}.log"
				archiveAboveSize="5242880"
				archiveNumbering="Sequence"
				maxArchiveFiles="10"
				layout="${message}" />

		<target xsi:type="File"
				name="quartzSchedulerLogging"
				fileName="Log_QuartzScheduler.log"
				archiveFileName="Archives\QuartzScheduler.{##}.log"
				archiveAboveSize="5242880"
				archiveNumbering="Sequence"
				maxArchiveFiles="10"
				layout="${message}" />
	</targets>
	<rules>
		<logger final="true" name="*Quartz*" minlevel="Trace" writeTo="quartzSchedulerLogging" />
		<logger name="*" minlevel="Trace" writeTo="mainLogFile" />
	</rules>
</nlog>

Example output:

2020-10-30 10:29:18.428|  1|INF|Quartz.Core.QuartzScheduler|Scheduler QuartzScheduler_$_NON_CLUSTERED started.

2020-10-30 10:29:18.440|  4|DBG|Quartz.Core.QuartzSchedulerThread|Batch acquisition of 0 triggers

2020-10-30 10:29:18.466|  1|INF|Quartz.Core.QuartzScheduler|Scheduler QuartzScheduler_$_NON_CLUSTERED started.

2020-10-30 10:29:18.466|  4|DBG|Quartz.Core.QuartzSchedulerThread|Batch acquisition of 0 triggers

2020-10-30 10:29:18.799|  4|DBG|Quartz.Core.QuartzSchedulerThread|Batch acquisition of 0 triggers

Wished output:

2020-10-30 10:29:18.428|  1|INF|Quartz.Core.QuartzScheduler|Scheduler QuartzScheduler_$_NON_CLUSTERED started.
2020-10-30 10:29:18.440|  4|DBG|Quartz.Core.QuartzSchedulerThread|Batch acquisition of 0 triggers
2020-10-30 10:29:18.466|  1|INF|Quartz.Core.QuartzScheduler|Scheduler QuartzScheduler_$_NON_CLUSTERED started.
2020-10-30 10:29:18.466|  4|DBG|Quartz.Core.QuartzSchedulerThread|Batch acquisition of 0 triggers
2020-10-30 10:29:18.799|  4|DBG|Quartz.Core.QuartzSchedulerThread|Batch acquisition of 0 triggers

Am I missing something?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.