Module: Ronin::Core::CLI::Logging
- Includes:
- CommandKit::Colors
- Defined in:
- lib/ronin/core/cli/logging.rb
Overview
Helper methods for printing log messages.
Instance Method Summary collapse
-
#log_error(message) ⇒ Object
Prints an error message to STDERR.
-
#log_info(message) ⇒ Object
Prints an info message to STDOUT.
-
#log_warn(message) ⇒ Object
Prints a warning message to STDOUT.
Instance Method Details
#log_error(message) ⇒ Object
Prints an error message to STDERR.
56 57 58 |
# File 'lib/ronin/core/cli/logging.rb', line 56 def log_error() stderr.puts("#{colors(stderr).bold(colors(stderr).bright_red('!!!'))} #{colors(stderr).bold(colors(stderr).red())}") end |
#log_info(message) ⇒ Object
Prints an info message to STDOUT.
36 37 38 |
# File 'lib/ronin/core/cli/logging.rb', line 36 def log_info() puts("#{colors.bold(colors.bright_green('>>>'))} #{colors.bold(colors.white())}") end |
#log_warn(message) ⇒ Object
Prints a warning message to STDOUT.
46 47 48 |
# File 'lib/ronin/core/cli/logging.rb', line 46 def log_warn() puts("#{colors.bold(colors.bright_red('/!\\'))} #{colors.bold(colors.bright_yellow())}") end |