Salome HOME
b09a138d7329946506e1301f28cee716ba0c1fe5
[modules/kernel.git] / bin / appliskel / tests / salomeCommand / getLogger.py
1 # Copyright (C) 2013-2023  CEA, EDF, OPEN CASCADE
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 import os
21 import sys
22 import logging
23
24 def getLogger(args=None):
25   if args is None:
26     args = []
27   outfileOptionPrefix = "outfile="
28   outfileArgs = [ str(x) for x in args if str(x).startswith(outfileOptionPrefix) ]
29   allFiles = [ x.replace(outfileOptionPrefix, '') for x in outfileArgs ]
30   args = [ x for x in args if not str(x).startswith(outfileOptionPrefix) ]
31
32   logger = logging.getLogger(__name__)
33   if len(allFiles) == 0:
34     logger.addHandler(logging.StreamHandler())
35   else:
36     for currentFile in allFiles:
37       elements = currentFile.split(',')
38       for elt in elements:
39         elt = os.path.realpath(os.path.expanduser(elt))
40         hdlr = logging.FileHandler(elt)
41         logger.addHandler(hdlr)
42   #
43   logger.level = logging.DEBUG
44   return logger, args
45 #