When using REST Client I can log calls to a text file using :
RestClient.log = 'log.txt'
Which gives useful but messy output such as:
RestClient.get "https://dog.ceo/api/breeds/list/all", "Accept"=>"*/*", "Accept-Encoding"=>"gzip, deflate", "User-Agent"=>"someValue"
# => 200 OK | application/json 1755 bytes
Is there a way to format this output using Awesome Print (or similar)?
It's a little bit tricky to well log Restclient but here are some tips, you need to add a formatter to the logger and also there is a bug with restclient, as said in the restclient doc you create a logger with:
with this you will get a file called my-log.log with this conent:
and for another formatter:
then you will get:
to add awesome print, you can work as follow: require 'awesome_print'
then after setting the logger you will get this with or without the .red:
Before executing your code, For example if it is a ruby on rails project write an initilizer called "loggerrescrlient.rb". With the following code:
Then every time you execute the restlient will be print a log well printed and print the response with Rails.logger.