Capitalize start of log message

This commit is contained in:
Mark Felder 2018-03-19 17:39:12 +00:00
parent 0cf6f7a54d
commit 25279dba77
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ defmodule Pleroma.Web.Salmon do
remote_users(activity)
|> Enum.each(fn(remote_user) ->
Task.start(fn ->
Logger.debug(fn -> "sending Salmon to #{remote_user.ap_id}" end)
Logger.debug(fn -> "Sending Salmon to #{remote_user.ap_id}" end)
send_to_user(remote_user, feed, poster)
end)
end)