Salome HOME
7b7886ce6ff30bc6801b36ba3eb6ec4194209b62
[modules/yacs.git] / src / engine / LogRecord.hxx
1 // Copyright (C) 2006-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _LOGRECORD_HXX_
21 #define _LOGRECORD_HXX_
22
23 #include <string>
24
25 namespace YACS
26 {
27   namespace ENGINE
28   {
29 /*! \brief Class for logging record
30  *
31  */
32     class LogRecord
33     {
34     public:
35       typedef int LogLevel;
36       static const LogLevel FATAL    = 50;
37       static const LogLevel ERROR    = 40;
38       static const LogLevel WARNING  = 30;
39       static const LogLevel INFO     = 20;
40       static const LogLevel DEBUG    = 10;
41       static const LogLevel NOTSET   = 0;
42
43       LogRecord(const std::string& name,int level,const std::string& message, const std::string& file, int line);
44       virtual ~LogRecord();
45       /** The logger name. */
46       const std::string _loggerName;
47       /** The message of logging record */
48       const std::string _message;
49       /** Level of logging record */
50       int _level;
51       /** filename of logging record */
52       std::string _fileName;
53       /** line number of logging record */
54       int _line;
55       virtual std::string getLevelName(int level);
56
57       virtual std::string getStr();
58
59     protected:
60     };
61   }
62 }
63
64 #endif