gpodder/src/gpodder/liblogger.py
Thomas Perl 181564f1b7 Add 2010 to the years in copyright notice
The following command has been used:

grep -r '2005-2009 Thomas Perl and the gPodder Team' * | cut -d: -f1 |
xargs sed -i -e 's/2005-2009 Thomas Perl and the gPodder Team/2005-2010
Thomas Perl and the gPodder Team/g'
2010-01-02 17:35:42 +01:00

59 lines
1.7 KiB
Python

# -*- coding: utf-8 -*-
#
# gPodder - A media aggregator and podcast client
# Copyright (c) 2005-2010 Thomas Perl and the gPodder Team
#
# gPodder 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 3 of the License, or
# (at your option) any later version.
#
# gPodder 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, see <http://www.gnu.org/licenses/>.
#
#
# liblogger.py -- gPodder logging facility
# Thomas Perl <thp perli net> 20061117
#
#
import traceback
import time
write_to_stdout = False
def enable_verbose():
global write_to_stdout
write_to_stdout = True
first_time = time.time()
last_times = []
def log( message, *args, **kwargs):
global first_time
global last_times
if 'sender' in kwargs:
message = '(%s) %s' % ( kwargs['sender'].__class__.__name__, message )
if 'bench_start' in kwargs:
last_times.append(time.time())
if 'bench_end' in kwargs and len(last_times) > 0:
message += (' (benchmark: %.4f seconds)' % (time.time()-(last_times.pop())))
if write_to_stdout:
print (('[%8.3f] ' % (time.time()-first_time)) + message) % args
if kwargs.get( 'traceback', False):
error = traceback.format_exc()
if error.strip() != 'None':
print error
def msg( type, message, *args):
s = message % args
print '%c\t%s' % ( type[0].upper(), s )