Method: Yast::CommandLineClass#PrintVerbose
- Defined in:
- library/commandline/src/modules/CommandLine.rb
#PrintVerbose(string) ⇒ Object
Same as Print(), but the string is printed only when verbose command line mode was activated
211 212 213 214 215 |
# File 'library/commandline/src/modules/CommandLine.rb', line 211 def PrintVerbose(string) Print(string) if @verbose nil end |