Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like all calls made to RavenDb to be shown in the Resharper testrunner when i run my tests, is there some kind of logging or tracing that can be turned on in the client?

share|improve this question

2 Answers

up vote 4 down vote accepted

Pelle, RavenDB uses NLog under the covers to log its actions. You can configure NLog to output everything from Raven.Client.* to the console / debug, you can do it with the following configuration:

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.netfx35.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <targets>
        <target xsi:type="Console" Name="Console" />
    </targets>
    <rules>
        <logger name="Raven.Client.*" writeTo="Console"/>
    </rules>
</nlog>
share|improve this answer
Worked great! Thanks! – Pelle Dec 19 '11 at 8:29

This is just something that's off the top of my head. I use Resharper and NUnit or XUnit. To get any info in the Resharper unit test output window, I just use Debug.WriteLine("blah"); Works great.

Now RavenDb does have some places you can add your own custom logic, such as Debug.WL(..) by creating your own IDocumentQueryListener's ..

So maybe implement one of them?

public class DebugWriteLineDocumentListener : IDocumentQueryListener
{
    #region Implementation of IDocumentQueryListener

    public void BeforeQueryExecuted(IDocumentQueryCustomization queryCustomization)
    {
        // Do whatever you want, here.
        // UnTested .. but I *think* the ToString will list the Linq query.
        Debug.WriteLine(queryCustomization.ToString());
    }

    #endregion
}

Then just register this listener with your DocumentStore ...

documentStore.RegisterListener(new DebugWriteLineDocumentListener());

See if that helps ..

I've not tried it .. just the first thing that came into my head :)

GL! Keep us posted!

share|improve this answer
Thanks! good to know! – Pelle Dec 19 '11 at 8:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.