Salome HOME
3f0e3515780b8f7dd8ea93d16b056ac754ba8f92
[modules/med.git] / src / INTERP_KERNEL / Log.hxx
1 // Copyright (C) 2007-2015  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 _LOG_H_
21 #define _LOG_H_
22
23 /** 
24  * \file Log.hxx
25  * \brief Simple pre-processor logging utility.
26  *
27  * Replaces LOG( lvl, x ) with "if(lvl <= LOG_LEVEL) std::cout << x << std::endl" when logging is active 
28  * (LOG_LEVEL > 0 is defined). x is the level at which the message should be logged - if it is smaller or equal to
29  * LOG_LEVEL (which can be defined at compile-time for each file by passing option -DLOG_LEVEL=x to gcc)
30  * than the message is logged.
31  *
32  *
33  *
34  */
35
36 /// define LOG_LEVEL here if it is not already defined
37 #ifndef LOG_LEVEL
38 #define LOG_LEVEL 0
39 #endif
40
41 #if LOG_LEVEL > 0
42
43 #include <iostream>
44
45 /// write message msg to std::cout if x <= LOG_LEVEL
46 #define LOG(x, msg) if(x <= LOG_LEVEL) std::cout << msg << std::endl; 
47 #define LOG3( x , msg1 , msg2 ) if(x <= LOG_LEVEL) std::cout << msg1, msg2 << std::endl; 
48
49 #else
50
51 #define LOG( x , msg )
52 #define LOG3( x , msg1 , msg2 )
53
54 #endif
55
56
57
58
59
60
61
62
63
64
65
66 #endif