nipy / PySurfer

Cortical neuroimaging visualization in Python
https://pysurfer.github.io/
BSD 3-Clause "New" or "Revised" License
240 stars 97 forks source link

Does verbose work? #160

Closed mwaskom closed 8 years ago

mwaskom commented 8 years ago

The verbose parameter, specifically in project_volume_data, doesn't seem to have any effect. e.g.:

surf = project_volume_data(vol, hemi, reg,
                               smooth_fwhm=1, projarg=(.5, .5, 1),
                               verbose=verbose)

Prints (to stderr, based on the Jupyter css color) INFO level log information no matter whether I set verbose to False or "DEBUG".

Do I not understand how to use it, or is this parameter being ignored?

larsoner commented 8 years ago

That function is missing the @verbose decorator

mwaskom commented 8 years ago

Easy fix :) #161