mirror of
https://github.com/simple-login/app.git
synced 2025-02-25 00:03:03 +08:00
use exception log for /alias/options endpoints
This commit is contained in:
parent
cd15c64731
commit
f56b0cddb2
1 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@ def options():
|
|||
existing: array of existing aliases
|
||||
|
||||
"""
|
||||
LOG.warning("/alias/options is obsolete")
|
||||
LOG.exception("/alias/options is obsolete")
|
||||
user = g.user
|
||||
hostname = request.args.get("hostname")
|
||||
|
||||
|
@ -104,7 +104,7 @@ def options_v2():
|
|||
|
||||
|
||||
"""
|
||||
LOG.warning("/v2/alias/options is obsolete")
|
||||
LOG.exception("/v2/alias/options is obsolete")
|
||||
|
||||
user = g.user
|
||||
hostname = request.args.get("hostname")
|
||||
|
@ -184,7 +184,7 @@ def options_v3():
|
|||
|
||||
|
||||
"""
|
||||
LOG.warning("/v3/alias/options is obsolete")
|
||||
LOG.exception("/v3/alias/options is obsolete")
|
||||
user = g.user
|
||||
hostname = request.args.get("hostname")
|
||||
|
||||
|
|
Loading…
Reference in a new issue