2007-10-09 21:30:28 +02:00
|
|
|
# Copyright (C) 2007 Red Hat, Inc.
|
2006-10-15 01:08:44 +02:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
2006-10-16 15:56:22 +02:00
|
|
|
import sys
|
|
|
|
import os
|
2006-08-11 13:05:33 +02:00
|
|
|
import logging
|
2007-05-29 18:11:57 +02:00
|
|
|
import time
|
2006-08-11 13:05:33 +02:00
|
|
|
|
2007-10-09 21:30:28 +02:00
|
|
|
# Let's keep this self contained so that it can be easily
|
|
|
|
# pasted in external sugar service like the datastore.
|
2007-10-09 18:58:39 +02:00
|
|
|
|
|
|
|
def get_logs_dir():
|
|
|
|
profile = os.environ.get('SUGAR_PROFILE', 'default')
|
|
|
|
logs_dir = os.path.join(os.path.expanduser('~'),
|
|
|
|
'.sugar', profile, 'logs')
|
2006-12-04 20:12:24 +01:00
|
|
|
return logs_dir
|
2006-10-24 20:00:14 +02:00
|
|
|
|
2007-09-05 11:22:41 +02:00
|
|
|
def set_level(level):
|
|
|
|
levels = { 'error' : logging.ERROR,
|
|
|
|
'warning' : logging.WARNING,
|
|
|
|
'debug' : logging.DEBUG,
|
|
|
|
'info' : logging.INFO }
|
|
|
|
if levels.has_key(level):
|
2007-10-09 18:58:39 +02:00
|
|
|
logging.getLogger('').setLevel(levels[level])
|
2006-08-11 15:21:11 +02:00
|
|
|
|
2007-10-09 21:30:28 +02:00
|
|
|
def start(log_filename=None):
|
2007-10-09 21:43:55 +02:00
|
|
|
logging.basicConfig(level=logging.WARNING,
|
|
|
|
format="%(created)f %(levelname)s %(message)s")
|
|
|
|
|
2007-09-05 11:22:41 +02:00
|
|
|
if os.environ.has_key('SUGAR_LOGGER_LEVEL'):
|
|
|
|
set_level(os.environ['SUGAR_LOGGER_LEVEL'])
|
|
|
|
|
2007-10-09 21:50:48 +02:00
|
|
|
if log_filename and not sys.stdin.isatty():
|
2007-10-09 18:58:39 +02:00
|
|
|
log_path = os.path.join(get_logs_dir(), log_filename + '.log')
|
|
|
|
log_file = open(log_path, 'w')
|
2007-05-29 21:24:01 +02:00
|
|
|
|
2007-10-09 21:30:28 +02:00
|
|
|
os.dup2(log_file.fileno(), sys.stdout.fileno())
|
|
|
|
os.dup2(log_file.fileno(), sys.stderr.fileno())
|