More verbose loggin

Thread names are used to determine the logging header in the TTY ui. A
recent change made them too terse (basically only changing the account
name and not the folder names). Unbreak.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth 2011-09-29 16:59:36 +02:00
parent eb0b546927
commit ba396cf0ef
2 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,9 @@ New Features
Changes
-------
* Indicate progress when copying many messages (slightly change log format)
Bug Fixes
---------

View File

@ -281,7 +281,7 @@ class SyncableAccount(Account):
thread = InstanceLimitedThread(\
instancename = 'FOLDER_' + self.remoterepos.getname(),
target = syncfolder,
name = "Folder sync [%s]" % self,
name = "Folder %s [acc: %s]" % (remotefolder, self),
args = (self.name, remoterepos, remotefolder, localrepos,
statusrepos, quick))
thread.setDaemon(1)