mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
bc735bbe22
- unified makefile project for the whole repos - new separate project for tests
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
|