jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* ====================================================================
   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 HH.WMS.Utils.NPOI.Util
{
    using System;
    using System.Configuration;
    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 = 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
 
 
}