module Launchy

def debug?

LAUNCHY_DEBUG here
we may do logging before a call to 'open', hence the need to check
def debug?
  @debug || to_bool(ENV.fetch("LAUNCHY_DEBUG", nil))
end