You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.3 KiB
54 lines
2.3 KiB
// ==============================================================================
|
|
//
|
|
// 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
|
|
{
|
|
/// <summary>
|
|
/// Extensions to help make logging awesome - this should be installed into the root namespace of your application
|
|
/// </summary>
|
|
public static class LogExtensions
|
|
{
|
|
/// <summary>
|
|
/// Gets the logger for <see cref="T"/>.
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <param name="type">The type to get the logger for.</param>
|
|
/// <returns>Instance of a logger for the object.</returns>
|
|
public static ILog Log<T>(this T type)
|
|
{
|
|
//string objectName = typeof(T).FullName;
|
|
return LogManager.GetLogger(typeof(T));
|
|
}
|
|
/// <summary>
|
|
/// Gets the logger for the specified object name.
|
|
/// </summary>
|
|
/// <param name="objectName">Either use the fully qualified object name or the short. If used with Log<T>() you must use the fully qualified object name"/></param>
|
|
/// <returns>Instance of a logger for the object.</returns>
|
|
//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);
|
|
}
|
|
}
|
|
}
|