Code Monkey home page Code Monkey logo

nlog.owin.logging's People

Contributors

304notmodified avatar alexdovgan avatar dependabot-support avatar pysco68 avatar snakefoot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

nlog.owin.logging's Issues

"Incorrect" {callsite} value in log file

Today I used this library for the first time and I when I was reviewing the log files it generated, I found all calling methods to be "NLog.Owin.Logging.NLogFactory+Logger.WriteCore" instead of my class methods (using ${callsite}). Digging into the the code for NLog and this library I found out that NLog goes up the stack frame and finds the calling method, but since it does not "know" anything about your library, it assumes it is the correct one. (which is wrong in this case)

The problem gets solved by adding these 2 lines to my project, but I think it should be added to the library instead, so the end-user(developer) does not have to worry about it.

LogManager.AddHiddenAssembly(typeof(NLogFactory).Assembly);
LogManager.AddHiddenAssembly(typeof(LoggerExtensions).Assembly);

Hope it helps someone.

Skip eventid-property when using default value zero

Should not insert EventId-property when eventid is not assigned (Has value zero).

logEvent.Properties["EventId"] = eventId;

Also consider pre-boxing the common eventids 0-50 like this:

        private static readonly object[] EventIdBoxing = Enumerable.Range(0, 50).Select(v => (object)v).ToArray(); 

        private static object GetEventId(int eventId)
        {
            if (eventId >= 0 && eventId < EventIdBoxing.Length)
                return EventIdBoxing[eventId];
            else
                return eventId;
        }

EventID is always 0

File: NlogAdapter
Method: WriteCore

Why I'm getting eventId = 0 when using WriteCore method?
You passing it into method as paramter, but never using it?

Thanks for response

EOL normalization

after .gitattributes has been changed:

rm .git/index     # Remove the index to force git to
git reset         # re-scan the working directory
git status        # Show files that will be normalized
git add -u
git commit -m "EOL normalization"

Add example of using Nlog adapter inside Controller

I've installed NLog.Owin.Logging package from Nuget, added app.UseNLog(); as first line in Configuration method in Startup class, I've setup everything inside 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"
      xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
      autoReload="true"
      throwExceptions="false"
      internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log" >

  <targets>
    <target xsi:type="Database" name="Database" connectionStringName="ApplicationDbContext">
      <commandText>
        EXEC Add_Log @Data = @Date, @Rodzaj = @Level, @Wiadomosc = @Message;</commandText>
      <parameter name="@Message" layout="${message}"/>
      <parameter name="@Level" layout="${level:uppercase=true}"/>
      <parameter name="@Date" layout="${date}"/>
    </target>
  </targets>

  <rules>
    <logger name="*" minlevel="Trace" writeTo="Database" />
  </rules>
</nlog>

but my log table is empty. I've checked SQL Server Profiler and I don't see my procedure being called.
I'm using standard:

var logger = LogManager.GetCurrentClassLogger();
logger.Error("Error");

What I would like to request is simple example of how to setup and use NLog.Owin.Logging with Owin ASP site.

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.