Skip to content

Commit

Permalink
[Processing] Comment debuging statements in OTB which clutter up Proc…
Browse files Browse the repository at this point in the history
…essing log
  • Loading branch information
Rado Guzinski committed Jul 22, 2014
1 parent f511bf9 commit b115ea6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/plugins/processing/algs/otb/OTBAlgorithm.py
Expand Up @@ -340,9 +340,9 @@ def processAlgorithm(self, progress):
if not found: if not found:
ProcessingLog.addToLog(ProcessingLog.LOG_INFO, "Adapter for %s not found" % the_key) ProcessingLog.addToLog(ProcessingLog.LOG_INFO, "Adapter for %s not found" % the_key)


frames = inspect.getouterframes(inspect.currentframe())[1:] #frames = inspect.getouterframes(inspect.currentframe())[1:]
for a_frame in frames: #for a_frame in frames:
frame,filename,line_number,function_name,lines,index = a_frame # frame,filename,line_number,function_name,lines,index = a_frame
ProcessingLog.addToLog(ProcessingLog.LOG_INFO, "%s %s %s %s %s %s" % (frame,filename,line_number,function_name,lines,index)) # ProcessingLog.addToLog(ProcessingLog.LOG_INFO, "%s %s %s %s %s %s" % (frame,filename,line_number,function_name,lines,index))


OTBUtils.executeOtb(commands, progress) OTBUtils.executeOtb(commands, progress)

0 comments on commit b115ea6

Please sign in to comment.