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