aboutsummaryrefslogtreecommitdiff
path: root/src/mod_register_web.erl
diff options
context:
space:
mode:
authorEvgeny Khramtsov <ekhramtsov@process-one.net>2019-09-23 15:17:20 +0300
committerEvgeny Khramtsov <ekhramtsov@process-one.net>2019-09-23 15:17:20 +0300
commit5770946f03ba669ea867b787fbd546333a8a3814 (patch)
tree73a03717ac5d4c31e12b92c1aba3b407f3c5329c /src/mod_register_web.erl
parentFix unicode formatting in ACME module (diff)
Correctly handle unicode in log messages
Diffstat (limited to 'src/mod_register_web.erl')
-rw-r--r--src/mod_register_web.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_register_web.erl b/src/mod_register_web.erl
index b066cffcd..3ff172f13 100644
--- a/src/mod_register_web.erl
+++ b/src/mod_register_web.erl
@@ -194,7 +194,7 @@ css() ->
{ok, Data} ->
{ok, Data};
{error, Why} ->
- ?ERROR_MSG("Failed to read ~s: ~s", [File, file:format_error(Why)]),
+ ?ERROR_MSG("Failed to read ~ts: ~ts", [File, file:format_error(Why)]),
error
end.