-
Notifications
You must be signed in to change notification settings - Fork 1
/
log.py
64 lines (51 loc) · 2.08 KB
/
log.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
Module for logging, part of virt-who
Copyright (C) 2011 Radek Novacek <[email protected]>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""
import logging
import logging.handlers
import os
import sys
def getLogger(debug):
logger = logging.getLogger("rhsm-app")
logger.setLevel(logging.DEBUG)
path = '/var/log/rhsm/rhsm.log'
try:
if not os.path.isdir("/var/log/rhsm"):
os.mkdir("/var/log/rhsm")
except:
pass
# Try to write to /var/log, fallback on console logging:
try:
fileHandler = logging.handlers.RotatingFileHandler(path, maxBytes=0x100000, backupCount=5)
fileHandler.setFormatter(logging.Formatter('%(asctime)s [%(levelname)s] @%(filename)s:%(lineno)d - %(message)s'))
if debug:
fileHandler.setLevel(logging.DEBUG)
else:
fileHandler.setLevel(logging.INFO)
logger.addHandler(fileHandler)
except Exception, e:
sys.stderr.write("Unable to log to %s: %s\n" % (path, e))
streamHandler = logging.StreamHandler()
streamHandler.setFormatter(logging.Formatter('%(levelname)s: %(message)s'))
if debug:
streamHandler.setLevel(logging.DEBUG)
else:
streamHandler.setLevel(logging.INFO)
# Don't print exceptions to stdout in non-debug mode
f = logging.Filter()
f.filter = lambda record: record.exc_info is None
streamHandler.addFilter(f)
logger.addHandler(streamHandler)
return logger