зеркало из
1
0
Форкнуть 0

Add more data to error logging

This commit is contained in:
Jorge Villaseñor 2018-11-06 10:41:21 -08:00
Родитель df90169c0f
Коммит 07dddec7cf
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -58,9 +58,9 @@ module Fluent
begin
@socket.send(metric, 0, @host, @port)
rescue Errno::ECONNREFUSED => error
log.warn "Error connecting to #{@host}: #{error}"
log.warn "Error connecting to #{@host} while sending the record \"#{record}\": #{error}"
rescue => error
log.error "Unhandled error trying to send MDM message"
log.error "Unhandled error trying to send MDM message: \"#{record}\""
end
}
end