Skip to content

Commit

Permalink
More verbose loggin
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
spaetz committed Sep 29, 2011
1 parent eb0b546 commit ba396cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Changelog.draft.rst
Expand Up @@ -15,7 +15,9 @@ New Features

Changes
-------


* Indicate progress when copying many messages (slightly change log format)

Bug Fixes
---------

Expand Down
2 changes: 1 addition & 1 deletion offlineimap/accounts.py
Expand Up @@ -281,7 +281,7 @@ def sync(self):
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)
Expand Down

0 comments on commit ba396cf

Please sign in to comment.