Class: Fog::Logger
- Inherits:
-
Object
- Object
- Fog::Logger
- Defined in:
- lib/fog/core/logger.rb
Class Method Summary collapse
- .[](channel) ⇒ Object
- .[]=(channel, value) ⇒ Object
- .debug(message) ⇒ Object
- .deprecation(message) ⇒ Object
- .warning(message) ⇒ Object
- .write(key, value) ⇒ Object
Class Method Details
.[](channel) ⇒ Object
13 14 15 |
# File 'lib/fog/core/logger.rb', line 13 def self.[](channel) @channels[channel] end |
.[]=(channel, value) ⇒ Object
17 18 19 |
# File 'lib/fog/core/logger.rb', line 17 def self.[]=(channel, value) @channels[channel] = value end |
.debug(message) ⇒ Object
21 22 23 |
# File 'lib/fog/core/logger.rb', line 21 def self.debug() write(:debug, "[light_black][fog][DEBUG] #{}[/]\n") end |
.deprecation(message) ⇒ Object
25 26 27 |
# File 'lib/fog/core/logger.rb', line 25 def self.deprecation() write(:deprecation, "[yellow][fog][DEPRECATION] #{}[/]\n") end |
.warning(message) ⇒ Object
29 30 31 |
# File 'lib/fog/core/logger.rb', line 29 def self.warning() write(:warning, "[yellow][fog][WARNING] #{}[/]\n") end |
.write(key, value) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/fog/core/logger.rb', line 33 def self.write(key, value) channel = @channels[key] if channel = if channel.tty? value.gsub(Fog::Formatador::PARSE_REGEX) { "\e[#{Fog::Formatador::STYLES[$1.to_sym]}m" }.gsub(Fog::Formatador::INDENT_REGEX, "") else value.gsub(Fog::Formatador::PARSE_REGEX, "").gsub(Fog::Formatador::INDENT_REGEX, "") end channel.write() end nil end |