Merge branch 'ss/improve_logging_using_str' into next

This commit is contained in:
Nicolas Sebrecht 2011-04-27 19:07:49 +02:00
commit e614838a1f
3 changed files with 14 additions and 9 deletions

View File

@ -125,6 +125,9 @@ class Account(CustomConfig.ConfigHelperMixin):
def getname(self):
return self.name
def __str__(self):
return self.name
def getsection(self):
return 'Account ' + self.getname()
@ -253,7 +256,7 @@ class SyncableAccount(Account):
thread = InstanceLimitedThread(\
instancename = 'FOLDER_' + self.remoterepos.getname(),
target = syncfolder,
name = "Folder sync [%s]" % self.name,
name = "Folder sync [%s]" % self,
args = (self.name, remoterepos, remotefolder, localrepos,
statusrepos, quick))
thread.setDaemon(1)

View File

@ -1,6 +1,5 @@
# Base folder support
# Copyright (C) 2002 John Goerzen
# <jgoerzen@complete.org>
# Copyright (C) 2002-2011 John Goerzen & contributors
#
# 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

View File

@ -72,6 +72,9 @@ class BaseRepository(CustomConfig.ConfigHelperMixin):
def getname(self):
return self.name
def __str__(self):
return self.name
def getuiddir(self):
return self.uiddir