view Logging/SilentLogger.cs @ 7:f4da31cb09d9

* Add translation DTD to utils project * Alter Translation class to resolve error when initialising with an empty local language (should default to no local language, not exception) no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Fri, 02 Jan 2009 20:12:06 +0000
parents 961030992bd2
children 0352fa33ee8f
line wrap: on
line source

using System;

namespace IBBoard.Logging
{
	/// <summary>
	/// Summary description for SilentLogger.
	/// </summary>
	public class SilentLogger : Logger
	{
		public SilentLogger() : base(null)
		{
		}

		protected override void LogMessage(LogItem item)
		{
			//Do nothing
		}
		
		protected override void LogMessageString (string str)
		{
			//Do nothing
		}

	}
}