Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question already has an answer here:

I'm currently developing a application logging library using the built in TraceListener. This library will be used in many projects and should offer a simple interface where I only have to care about WHAT is going to be written in into the log file, but not HOW.

By using the reflection namespace, I can figure out which application currently called a log function (retrieving execution assembly name), but I want also the name of the function and class that called the logging function.

Let's say I have:

public static void LogInfo(string vLogText) {
   Trace.WriteLine(
        MethodInfo.GetCurrentMethod().Name
        + this.GetType().ToString() + vLogText);
   }

When I call from another project (class: TestClass, method: TestMethod)

Tracer.LogInfo("log this!")

I expect to see in the log:

TestClass, TestMethod, log this!

But instead I got

TracerClass, LogInfo, log this!

How to get the parent method and class name?

share|improve this question
5  
This might help you immensely if you're using newest C# and VS 2012. – Trust me - I'm a Doctor Feb 13 at 8:34
@Trustme-I'maDoctor This is brilliant! Wasn't aware of such a thing. Can you please make this to a answer instead of a comment so I can vote up and mark it as closed? Thank you very much. – Neurodefekt Feb 13 at 8:38
@Neurodefekt No problem, it's done. Glad I could help. :) – Trust me - I'm a Doctor Feb 13 at 8:41

marked as duplicate by GSerg, Thor, Yan Sklyarenko, Jon Egerton, Soner Gönül Feb 13 at 13:55

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 2 down vote accepted

The newest C# and VS 2012 shipped with Caller Information (namely CallerFilePathAttribute, CallerLineNumberAttribute and CallerMemberNameAttribute), which will help you if you can only use it.

If you can't, you'd have to refer to other answers.

share|improve this answer

You may just record the full stack trace instead of just the calling method using Environment.StackTrace. This may help you if you want to use the same logging structure to log exceptions.

Refer to this msdn page for more information.

share|improve this answer

try doint something like this.

    var mth = new StackTrace().GetFrame(1).GetMethod();
    var clss = mth.ReflectedType.Name;

I head that in C# 5, something much more elegant is avalible, but if you are on older framework - the above code will help.

the 1 is how down the callstack you want to go.

share|improve this answer
Two things: 1) This can significantly affect performance 2) In optimized code, method inlining can cause an incorrect method name to be printed. – mike z Feb 13 at 8:40
@mikez thanks :) will keep that in mind if i ever get a problem with it – Jens Kloster Feb 13 at 8:41

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