do Not log sync endpoints, actually,

This commit is contained in:
Jill 2023-01-06 17:33:10 +03:00
parent 0cbe127516
commit c1fc797eae
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ include CrystalGauntlet
CrystalGauntlet.endpoints["/accounts/backupGJAccount.php"] = ->(context : HTTP::Server::Context): String {
params = URI::Params.parse(context.request.body.not_nil!.gets_to_end)
LOG.debug { params.inspect }
#LOG.debug { params.inspect }
username = params["userName"]
password = params["password"]

View File

@ -4,7 +4,7 @@ include CrystalGauntlet
CrystalGauntlet.endpoints["/accounts/syncGJAccount.php"] = ->(context : HTTP::Server::Context): String {
params = URI::Params.parse(context.request.body.not_nil!.gets_to_end)
LOG.debug { params.inspect }
#LOG.debug { params.inspect }
username = params["userName"]
password = params["password"]