Code Monkey home page Code Monkey logo

Comments (4)

MoYummy avatar MoYummy commented on May 26, 2024

Here is my code in old version of syslog. Hope it helps.

var config = LogManager.Configuration;
var syslogTarget = config.FindTargetByName<Syslog>(CNSTR_SYSLOG);
syslogTarget.SyslogServer = "some.syslog.server";
LogManager.Configuration = config;
LogManager.Configuration.Reload();
LogManager.ReconfigExistingLoggers();

from nlog.targets.syslog.

luigiberrettini avatar luigiberrettini commented on May 26, 2024

I just created a console application and found out that both the ColoredConsoleTarget and FileTarget behave as expected without reloading the configuration or reconfiguring loggers:

var coloredConsoleTarget = loggingConfiguration.FindTargetByName<ColoredConsoleTarget>(ColoredConsoleTargetName);
coloredConsoleTarget.Layout = "${message}";

var fileTarget = loggingConfiguration.FindTargetByName<FileTarget>(FileTargetName);
fileTarget.FileName = ".\\new-log.txt";

This is because those targets use target properties directly instead of loading them from configuration settings.

I thought that the InitializeTarget was called to reconfigure a target, but if it is already inited no reconfig happens 😞

I could simply add a ReInitialize method but I would prefer not breaking the NLog base Target API.
Moreover I would like to avoid adding a Reinit call to each and every configuration setter.

Maybe a ForceReinit or ReconfigExistingLoggers(force: true) would be useful...
Does @304NotModified have any suggestion on the expected behavior a target with complex configuration should have and a feasible and elegant solution?

from nlog.targets.syslog.

304NotModified avatar 304NotModified commented on May 26, 2024

Isn't easy to reset the cached values in the setter?

Eg in the set of Server property, clear the current connection. IPropertyChanged is maybe a nice pattern.

from nlog.targets.syslog.

luigiberrettini avatar luigiberrettini commented on May 26, 2024

I have just implemented INotifyPropertyChanged to reinit the target.
I will try to refine the solution as soon as possible

from nlog.targets.syslog.

Related Issues (20)

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.