riemann-babbler 1.0.8.6 → 1.0.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/riemann/babbler/start.rb +1 -1
 - data/lib/riemann/babbler/version.rb +1 -1
 - metadata +1 -1
 
| 
         @@ -140,7 +140,7 @@ class Riemann::Babbler::Starter 
     | 
|
| 
       140 
140 
     | 
    
         
             
              def start_plugins!
         
     | 
| 
       141 
141 
     | 
    
         
             
                plugin_threads = started_plugins.map do |plugin|
         
     | 
| 
       142 
142 
     | 
    
         
             
                  Thread.new {
         
     | 
| 
       143 
     | 
    
         
            -
                    logger. 
     | 
| 
      
 143 
     | 
    
         
            +
                    logger.unknown "Start plugin #{plugin}"
         
     | 
| 
       144 
144 
     | 
    
         
             
                    plugin.new( config, logger, $riemann ).run
         
     | 
| 
       145 
145 
     | 
    
         
             
                  }
         
     | 
| 
       146 
146 
     | 
    
         
             
                end
         
     |