Version: 9.16.0
LogRecord.hxx
Go to the documentation of this file.
1// Copyright (C) 2006-2026 CEA, EDF
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
25namespace YACS
26{
27 namespace ENGINE
28 {
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();
46 const std::string _loggerName;
48 const std::string _message;
50 int _level;
52 std::string _fileName;
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
Class for logging record.
Definition: LogRecord.hxx:33
const std::string _message
Definition: LogRecord.hxx:48
virtual std::string getStr()
Definition: LogRecord.cxx:58
static const LogLevel FATAL
Definition: LogRecord.hxx:36
static const LogLevel WARNING
Definition: LogRecord.hxx:38
static const LogLevel NOTSET
Definition: LogRecord.hxx:41
virtual std::string getLevelName(int level)
Definition: LogRecord.cxx:39
static const LogLevel DEBUG
Definition: LogRecord.hxx:40
static const LogLevel ERROR
Definition: LogRecord.hxx:37
static const LogLevel INFO
Definition: LogRecord.hxx:39
const std::string _loggerName
Definition: LogRecord.hxx:46
LogRecord(const std::string &name, int level, const std::string &message, const std::string &file, int line)
Definition: LogRecord.cxx:30