ManageIQ/manageiq-providers-ovirt

View on GitHub
lib/manageiq/providers/ovirt/engine.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
94%
module ManageIQ
module Providers
module Ovirt
class Engine < ::Rails::Engine
isolate_namespace ManageIQ::Providers::Ovirt
 
config.autoload_paths << root.join('lib').to_s
 
initializer :append_secrets do |app|
app.config.paths["config/secrets"] << root.join("config", "secrets.defaults.yml").to_s
app.config.paths["config/secrets"] << root.join("config", "secrets.yml").to_s
end
 
def self.vmdb_plugin?
true
end
 
def self.plugin_name
_('oVirt Provider')
end
 
def self.init_loggers
$rhevm_log ||= Vmdb::Loggers.create_logger("rhevm.log")
end
 
def self.apply_logger_config(config)
Vmdb::Loggers.apply_config_value(config, $rhevm_log, :level_rhevm)
end
end
end
end
end