vote up 0 vote down star

I cannot figure out why I keep getting a null ref on filename when I'm clearly calling this singleton and it should be calling the Logger() to set the filename variable:

public class Logger
{
private static Logger defaultLogger = null;
readonly string filename;

public static Logger DefaultLogger
{
    get
    {
        // Check for valid instance
        if (defaultLogger == null) 
            defaultLogger = new Logger();

        // Return instance
        return defaultLogger;
    }
}

private Logger()
{
    filename = ConfigurationManager.AppSettings["MyLogPath"];
}


	public string Filename
	{
		get { return this.filename; }
	}

	public void Write(EntryType type, string data)
	{
		lock (this)
		{
			using (StreamWriter writer = new StreamWriter(filename, true))
			{
			//do something
			}
		}
	}
}

Here's how I'm calling this class:

Logger.DefaultLogger.Write(EntryType.Error, e.ToString());

So I get this error during runtime saying that filename is null:

 Value cannot be null.
Parameter name: path
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: path

Source Error:

Line 49: 
Line 50: 
Line 51:    	public string Filename
Line 52:    	{
Line 53:    		get { return this.filename; }

This was our original code (I did not write this), same problem:

public class Logger
{
	public static Logger DefaultLogger = new Logger();

string filename;

	public Logger()
	{
    filename = ConfigurationManager.AppSettings["LogPath"];
	}

	public Logger(string filename)
	{
		this.filename = filename;
	}

	public string Filename
	{
		get { return this.filename; }
	}

	public void Write(LogEntryType type, string data)
	{
		lock ()
		{
			using (StreamWriter writer = new StreamWriter(filename, true))
			{
				...
		}
	}
}
flag

63% accept rate
1  
You should never use lock(this). See the Remarks section here msdn.microsoft.com/en-us/library/…. – Joren Sep 28 at 16:30
1  
I tested your code and the private constructor is hit – Ngu Soon Hui Sep 28 at 16:31
Wait, now my code fails at this line: using (StreamWriter writer = new StreamWriter(filename, true)) because filename is null, can you set the filename explicitly and see? – Ngu Soon Hui Sep 28 at 16:34
I've updated the original post for more info. – coffeeaddict Sep 28 at 16:47
Yea, it fails at the using statement. When I call Write, it fails. – coffeeaddict Sep 28 at 16:47
show 1 more comment

5 Answers

vote up 6 vote down check

Is it because

ConfigurationManager.AppSettings["MyLogPath"];

is null?

Check that your App.Config file is there ( it takes the form of yourexe.exe.config in your bin folder). You App.Config should have the following lines:

<configuration>
   <appSettings>
      <add key="MyLogPath" value="C:\Simple.txt" />
   <appSettings>
</configuration>

Maybe in order to test, you can temporary set the filename to a well-know path ( filename=@"D:\C#\mytext.txt";) and see whether you get the error or not.

If I set the filename explicitly, then I won't have such an error, OTOH,if I set

filename=ConfigurationManager.AppSettings["MyLogPath"];

then I will get a

System.ArgumentNullException : Value cannot be null. Parameter name: path at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize) at System.IO.StreamWriter..ctor(String path, Boolean append)

If I stepped using a debugger, I can see that it failed at:

(StreamWriter writer = new StreamWriter(filename, true))

I don't know why your debugger won't hit the constructor. My debugger hit the constructor in both cases.

link|flag
No, because I set a break point there on that line, and it doesn't even get hit. I know that key is there in the web.config and is valid. – coffeeaddict Sep 28 at 16:24
Does the construct get called from your factory method at all? – Bill Sep 28 at 16:29
no, I stated that the debug point doesn't get hit if I put a debug point on that line of code inside the constructor that is setting the filename. So it's like the constructor is not being hit at all. – coffeeaddict Sep 28 at 16:39
sorry, yes it's not finding that key. If forgot I'm not in a web project. – coffeeaddict Sep 28 at 17:01
but we are grabbing keys like this in other non-web projects so I wonder why this one doesn't work. – coffeeaddict Sep 28 at 17:06
vote up 1 vote down

Without looking into it too much..

    private Logger()
    {
        filename = ConfigurationManager.AppSettings["MyLogPath"];
        throw new Exception("filename = "+filename);
    }

Does the exception get thrown?

link|flag
no it does not get thrown. And yes, the calling code is hit by debug. – coffeeaddict Sep 28 at 16:26
You can do that with a breakpoint. – Henk Holterman Sep 28 at 16:31
vote up 0 vote down

Static initilaizers are executed when the class definition is first accessed, which in your case means they are executed before your private constructor.

link|flag
I'm not following. I call DefaultLogger and it should call the Logger(). Can you explain again? – coffeeaddict Sep 28 at 16:37
Nevermind, you are right, what I said is true, but not relevant. When exactly do you call the Write method? is it possible that you do that before ConfigurationManager is fully initialized. In general static initializers is a tricky business - execution order is implicit and sometimes difficult to predict – mfeingold Sep 28 at 17:15
vote up 0 vote down

You're using a lock, so you expect this to be called in a multithreaded scenario, but you don't synchronize DefaultLogger. Also, are you sure you're setting fileName to something non-null in the first place?

link|flag
vote up 0 vote down

Try assigning your Logger to instance variable in your client code and accessing it's FileName. Perhaps it's not getting assigned correctly.
Also, do you need to have filename as readonly if you're only providing a get property?

link|flag

Your Answer

Get an OpenID
or

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