# File lib/drydock.rb, line 399 399: def debug(toggle=false) 400: if toggle.is_a? Symbol 401: @@debug = true if toggle == :on 402: @@debug = false if toggle == :off 403: else 404: @@debug = (!@@debug) 405: end 406: end