/* ====================================================================
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;
///
/// 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.
///
///
/// @author Marc Johnson (mjohnson at apache dot org)
/// @author Glen Stampoultzis (glens at apache.org)
/// @author Nicola Ken Barozzi (nicolaken at apache.org)
///
public class SystemOutLogger : POILogger
{
private String _cat;
public override void Initialize(String cat)
{
this._cat = cat;
}
///
/// Log a message
///
/// One of DEBUG, INFO, WARN, ERROR, FATAL
/// The object to log.
public override void Log(int level, Object obj1)
{
Log(level, obj1, null);
}
///
/// Log a message
///
/// One of DEBUG, INFO, WARN, ERROR, FATAL
/// The object to log. This is Converted to a string.
/// An exception to be logged
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);
}
}
}
///
/// Check if a logger is enabled to log at the specified level
///
/// One of DEBUG, INFO, WARN, ERROR, FATAL
///
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
}