Repository URL to install this package:
require 'json' module Lograge module Formatters class Json def call(data) ::JSON.dump(data) end end end end