diff options
author | lambda <pleromagit@rogerbraun.net> | 2018-03-20 05:57:47 +0000 |
---|---|---|
committer | lambda <pleromagit@rogerbraun.net> | 2018-03-20 05:57:47 +0000 |
commit | 9b97b023c53b88f4c04aed17e36022201016b6c9 (patch) | |
tree | 4d575f98d38a5bd033738480cc38f20c859c54d8 /lib/pleroma/web/websub/websub_controller.ex | |
parent | ec831751004e024aeff48f2afdbd4b90bc43e8e8 (diff) | |
parent | 16d102c1533b3d95570bc1715d5d5b4b8e0c0058 (diff) | |
download | pleroma-9b97b023c53b88f4c04aed17e36022201016b6c9.tar.gz |
Merge branch 'feld-Logger' into 'develop'
Logging cleanup
See merge request pleroma/pleroma!76
Diffstat (limited to 'lib/pleroma/web/websub/websub_controller.ex')
-rw-r--r-- | lib/pleroma/web/websub/websub_controller.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/websub/websub_controller.ex b/lib/pleroma/web/websub/websub_controller.ex index 6c9164ec8..115b64902 100644 --- a/lib/pleroma/web/websub/websub_controller.ex +++ b/lib/pleroma/web/websub/websub_controller.ex @@ -20,7 +20,7 @@ defmodule Pleroma.Web.Websub.WebsubController do # TODO: Extract this into the Websub module def websub_subscription_confirmation(conn, %{"id" => id, "hub.mode" => "subscribe", "hub.challenge" => challenge, "hub.topic" => topic} = params) do - Logger.debug("Got websub confirmation") + Logger.debug("Got WebSub confirmation") Logger.debug(inspect(params)) lease_seconds = if params["hub.lease_seconds"] do String.to_integer(params["hub.lease_seconds"]) |