fix: replace rogue ``print`` statement by ``self.ui.debug``.

This commit is contained in:
Valentin Lab 2015-11-09 14:31:06 +08:00
parent c5c45cc687
commit 0840f0c2b4
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ class OfflineImap:
stack_display.append(' => Stopped to handle current signal. ')
stack_displays.append(stack_display)
stacks = unique_count(stack_displays)
print("** Thread List:\n")
self.ui.debug('thread', "** Thread List:\n")
for stack, times in stacks:
if times == 1:
msg = "%s Thread is at:\n%s\n"