mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
11 lines
143 B
Ruby
11 lines
143 B
Ruby
|
|
||
|
class Verbosinator
|
||
|
|
||
|
constructor :configurator
|
||
|
|
||
|
def should_output?(level)
|
||
|
return (level <= @configurator.project_verbosity)
|
||
|
end
|
||
|
|
||
|
end
|