Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117877659
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
5 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/pykolab/logger.py b/pykolab/logger.py
index 878f79f..a0c75c9 100644
--- a/pykolab/logger.py
+++ b/pykolab/logger.py
@@ -1,143 +1,147 @@
# -*- coding: utf-8 -*-
# Copyright 2010-2012 Kolab Systems AG (http://www.kolabsys.com)
#
# Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen a kolabsys.com>
#
# 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; version 3 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
import grp
import logging
import logging.handlers
import os
import pwd
import sys
import time
from pykolab.translate import _
class Logger(logging.Logger):
"""
The PyKolab version of a logger.
This class wraps the Python native logging library, adding to the
loglevel capabilities, a debuglevel capability.
"""
debuglevel = 0
fork = False
loglevel = logging.CRITICAL
for arg in sys.argv:
if debuglevel == -1:
debuglevel = int(arg)
loglevel = logging.DEBUG
break
if '-d' == arg:
debuglevel = -1
continue
if '-l' == arg:
loglevel = -1
continue
if '--fork' == arg:
fork = True
if loglevel == -1:
if hasattr(logging,arg.upper()):
loglevel = getattr(logging,arg.upper())
else:
loglevel = logging.DEBUG
def __init__(self, *args, **kw):
if kw.has_key('name'):
name = kw['name']
elif len(args) == 1:
name = args[0]
else:
name = 'pykolab'
logging.Logger.__init__(self, name)
plaintextformatter = logging.Formatter("%(asctime)s %(name)s %(levelname)s %(message)s")
if not self.fork:
self.console_stdout = logging.StreamHandler(sys.stdout)
self.console_stdout.setFormatter(plaintextformatter)
self.addHandler(self.console_stdout)
if kw.has_key('logfile'):
self.logfile = kw['logfile']
else:
self.logfile = '/var/log/kolab/pykolab.log'
- # Make sure the log file exists
- fhandle = file(self.logfile, 'a')
- try:
- os.utime(self.logfile, None)
- finally:
- fhandle.close()
-
# Make sure (read: attempt to change) the permissions
try:
(ruid, euid, suid) = os.getresuid()
(rgid, egid, sgid) = os.getresgid()
except AttributeError, errmsg:
ruid = os.getuid()
rgid = os.getgid()
if ruid == 0 or rgid == 0:
try:
os.chown(
self.logfile,
pwd.getpwnam('kolab')[2],
grp.getgrnam('kolab-n')[2]
)
os.chmod(self.logfile, 0660)
except:
print >> sys.stderr, \
_("Could not change the ownership of log file %s") % (
self.logfile
)
+ # Make sure the log file exists
try:
- filelog_handler = logging.FileHandler(filename=self.logfile)
- filelog_handler.setFormatter(plaintextformatter)
- except IOError, e:
- print >> sys.stderr, _("Cannot log to file %s: %s") % (self.logfile, e)
+ fhandle = file(self.logfile, 'a')
+ try:
+ os.utime(self.logfile, None)
+ finally:
+ fhandle.close()
- if not len(self.handlers) > 1:
try:
- self.addHandler(filelog_handler)
- except:
- pass
+ filelog_handler = logging.FileHandler(filename=self.logfile)
+ filelog_handler.setFormatter(plaintextformatter)
+ except IOError, e:
+ print >> sys.stderr, _("Cannot log to file %s: %s") % (self.logfile, e)
+
+ if not len(self.handlers) > 1:
+ try:
+ self.addHandler(filelog_handler)
+ except:
+ pass
+
+ except IOError, errmsg:
+ pass
def remove_stdout_handler(self):
if not self.fork:
self.console_stdout.close()
self.removeHandler(self.console_stdout)
def debug(self, msg, level=1):
self.setLevel(self.loglevel)
# Work around other applications not using various levels of debugging
if not self.name.startswith('pykolab') and not self.debuglevel == 9:
return
if level <= self.debuglevel:
# TODO: Not the way it's supposed to work!
self.log(logging.DEBUG, '[%d]: %s' % (os.getpid(),msg))
logging.setLoggerClass(Logger)
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sun, Apr 5, 9:36 PM (3 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18716808
Default Alt Text
(5 KB)
Attached To
Mode
rP pykolab
Attached
Detach File
Event Timeline