mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-10 03:50:38 +03:00
More debug level changes.
This commit is contained in:
parent
d49089898f
commit
43c83ce9ed
4
html.c
4
html.c
@ -1095,7 +1095,7 @@ int html_get_handler(d_char *req, char *q_path, char **body, int *b_size, char *
|
|||||||
|
|
||||||
if (!uid || !user_open(&snac, uid)) {
|
if (!uid || !user_open(&snac, uid)) {
|
||||||
/* invalid user */
|
/* invalid user */
|
||||||
srv_log(xs_fmt("html_get_handler bad user %s", uid));
|
srv_debug(1, xs_fmt("html_get_handler bad user %s", uid));
|
||||||
return 404;
|
return 404;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1322,7 +1322,7 @@ int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size,
|
|||||||
uid = xs_list_get(l, 1);
|
uid = xs_list_get(l, 1);
|
||||||
if (!uid || !user_open(&snac, uid)) {
|
if (!uid || !user_open(&snac, uid)) {
|
||||||
/* invalid user */
|
/* invalid user */
|
||||||
srv_log(xs_fmt("html_post_handler bad user %s", uid));
|
srv_debug(1, xs_fmt("html_post_handler bad user %s", uid));
|
||||||
return 404;
|
return 404;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user