用于生成 Office 文件的 .NET 组件。
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.

100 lines
3.5 KiB

/* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for Additional information regarding copyright ownership.
The ASF licenses this file to You 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.
==================================================================== */
namespace Npoi.Core.Util
{
using System;
using System.Globalization;
/// <summary>
/// A logger class that strives to make it as easy as possible for
/// developers to write log calls, while simultaneously making those
/// calls as cheap as possible by performing lazy Evaluation of the log
/// message.
/// </summary>
/// <remarks>
/// @author Marc Johnson (mjohnson at apache dot org)
/// @author Glen Stampoultzis (glens at apache.org)
/// @author Nicola Ken Barozzi (nicolaken at apache.org)
/// </remarks>
public class SystemOutLogger : POILogger
{
private String _cat;
public override void Initialize(String cat)
{
this._cat = cat;
}
/// <summary>
/// Log a message
/// </summary>
/// <param name="level">One of DEBUG, INFO, WARN, ERROR, FATAL</param>
/// <param name="obj1">The object to log.</param>
public override void Log(int level, Object obj1)
{
Log(level, obj1, null);
}
/// <summary>
/// Log a message
/// </summary>
/// <param name="level"> One of DEBUG, INFO, WARN, ERROR, FATAL</param>
/// <param name="obj1">The object to log. This is Converted to a string.</param>
/// <param name="exception">An exception to be logged</param>
public override void Log(int level, Object obj1,
Exception exception) {
if (Check(level)) {
Console.WriteLine("["+_cat+"] "+obj1);
if(exception != null) {
System.Console.Write(exception.StackTrace);
}
}
}
/// <summary>
/// Check if a logger is enabled to log at the specified level
/// </summary>
/// <param name="level">One of DEBUG, INFO, WARN, ERROR, FATAL</param>
/// <returns></returns>
public override bool Check(int level)
{
int currentLevel;
try
{
string temp = null;//ConfigurationManager.AppSettings["poi.log.level"];
if (string.IsNullOrEmpty(temp))
temp = WARN.ToString(CultureInfo.InvariantCulture);
currentLevel = int.Parse(temp, CultureInfo.InvariantCulture);
}
catch (Exception)
{
currentLevel = POILogger.DEBUG;
}
if (level >= currentLevel)
{
return true;
}
return false;
}
} // end package scope class POILogger
}