Skip to content

Commit

Permalink
Refactor logging statement in trk2dictionary.pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
fullbat committed Mar 26, 2024
1 parent 3683193 commit 7bc5ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commit/trk2dictionary/trk2dictionary.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ cpdef run( filename_tractogram=None, path_out=None, filename_peaks=None, filenam
blurWeights[i] = np.exp( -(blurRho[i] - blur_core_extent)**2 / (2.0*blur_sigma**2) )

if nReplicas == 1 :
logger.info( '\t- Do not blur streamlines' )
logger.subinfo( '\t- Do not blur streamlines', indent_lvl=1, indent_char='-' )
else :
logger.subinfo( 'Blur streamlines:', indent_lvl=1, indent_char='-' )
logger.subinfo( f'core extent = {blur_core_extent:.3f}', indent_lvl=2, indent_char='-' )
Expand Down

0 comments on commit 7bc5ca3

Please sign in to comment.