Salome HOME
Complete documentation with option --with-env-modules
[modules/kernel.git] / src / SALOMELocalTrace / libSALOMELog.cxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  Author : Konstantin Leontev (OpenCascade)
24 //  Module : KERNEL
25 //  $Header$
26 //
27
28 #include "libSALOMELog.hxx"
29
30 #include <string>
31 #include <iostream>
32
33 namespace SALOME
34 {
35
36 // ============================================================================
37 /*!
38  *  Called by any log message macros to decide about log output in Release and
39  *  Debug mode dynamically rely on SALOME_VERBOSE environment variable.
40  *  Checks SALOME_VERBOSE only on the very first call and returns cached result
41  *  for all followed calls.
42  *  Returns true if SALOME_VERBOSE is positioned and not empty and if its
43  *  numeric value greater than 0.
44  */
45 // ============================================================================
46
47   bool VerbosityActivated()
48   {
49     auto isEnvVarSet = []() -> bool
50     {
51       const char* envVar = std::getenv("SALOME_VERBOSE");
52
53       if (envVar && (envVar[0] != '\0'))
54       {
55         try
56         {
57           const long long numValue = std::stoll(envVar);
58           return numValue > 0;
59         }
60         catch(const std::exception& e)
61         {
62           std::cerr << e.what() << '\n';
63         }
64       }
65
66       return false;
67     };
68
69     static const bool isActivated = isEnvVarSet();
70     return isActivated;
71   }
72 }