// ==============================================================================
//
// RealDimensions Software, LLC - Copyright © 2012 - Present - Released under the Apache 2.0 License
//
// Copyright 2007-2008 The Apache Software Foundation.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed
// under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
// CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
// ==============================================================================
using System.Collections.Concurrent;
using System.ComponentModel;
using log4net;
using log4net.Core;
namespace GPSBusiness
{
///
/// Extensions to help make logging awesome - this should be installed into the root namespace of your application
///
public static class LogExtensions
{
///
/// Gets the logger for .
///
///
/// The type to get the logger for.
/// Instance of a logger for the object.
public static ILog Log(this T type)
{
//string objectName = typeof(T).FullName;
return LogManager.GetLogger(typeof(T));
}
///
/// Gets the logger for the specified object name.
///
/// Either use the fully qualified object name or the short. If used with Log<T>() you must use the fully qualified object name"/>
/// Instance of a logger for the object.
//public static ILog Log(this string objectName)
//{
// return _dictionary.GetOrAdd(objectName, LoggingExtensions.Logging.Log.GetLoggerFor);
//}
public static ILog Log(this string objectName)
{
return LogManager.GetLogger(objectName);
}
}
}