##// END OF EJS Templates
#10821: Suppress print output on BackgroundJobManager.new
rs2 -
Show More
@@ -35,7 +35,7 b' import threading'
35 35
36 36 from IPython import get_ipython
37 37 from IPython.core.ultratb import AutoFormattedTB
38 from logging import error
38 from logging import error, debug
39 39
40 40
41 41 class BackgroundJobManager(object):
@@ -190,7 +190,7 b' class BackgroundJobManager(object):'
190 190 job.num = len(self.all)+1 if self.all else 0
191 191 self.running.append(job)
192 192 self.all[job.num] = job
193 print('Starting job # %s in a separate thread.' % job.num)
193 debug('Starting job # %s in a separate thread.' % job.num)
194 194 job.start()
195 195 return job
196 196
General Comments 0
You need to be logged in to leave comments. Login now