Class: Groonga::Command::LogLevel
- Defined in:
- lib/groonga/command/log-level.rb
Overview
A command class that represents log_level
command.
Instance Attribute Summary
Attributes inherited from Base
#arguments, #command_name, #original_format, #original_source, #path_prefix
Class Method Summary collapse
Instance Method Summary collapse
-
#level ⇒ String
level
parameter value.
Methods inherited from Base
#==, #[], #[]=, #command_format?, #initialize, #key?, #name, #output_type, #request_id, #to_command_format, #to_uri_format, #uri_format?
Constructor Details
This class inherits a constructor from Groonga::Command::Base
Class Method Details
.command_name ⇒ Object
26 27 28 |
# File 'lib/groonga/command/log-level.rb', line 26 def command_name "log_level" end |
.parameter_names ⇒ Object
30 31 32 33 34 |
# File 'lib/groonga/command/log-level.rb', line 30 def parameter_names [ :level, ] end |
Instance Method Details
#level ⇒ String
Returns level
parameter value.
42 43 44 |
# File 'lib/groonga/command/log-level.rb', line 42 def level self[:level] end |