# File lib/swiftcore/Analogger.rb, line 136 def populate_logs @config[-"logs"].each do |log| next unless log[-"service"] if Array === log[-"service"] log[-"service"].each do |loglog| @logs[loglog] = new_log(loglog,log[-"levels"],logfile_destination(log[-"logfile"]),log[-"cull"]) end else @logs[log[-"service"]] = new_log(log[-"service"],log[-"levels"],logfile_destination(log[-"logfile"]),log[-"cull"]) end end end