Commit a73a2ee29f5e190c40398531d6c4f46e4ffe67a0

Stephen Moloney 2017-02-16T13:24:11

fix bug where falling back to default httpoison settings

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/lib/ex_ovh/config.ex b/lib/ex_ovh/config.ex
index 01cea6a..36e9701 100644
--- a/lib/ex_ovh/config.ex
+++ b/lib/ex_ovh/config.ex
@@ -49,7 +49,7 @@ defmodule ExOvh.Config do
     rescue
       _error ->
         Og.log_return("No httpoison_config was found. " <>
-                      "Falling back to default httpoison settings #{@default_httpoison_opts}", __ENV__, :warn)
+                      "Falling back to default httpoison settings #{inspect(@default_httpoison_opts)}", __ENV__, :warn)
         @default_httpoison_opts
     end
   end