summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-02-03 19:34:52 +0100
committerdefault <nobody@localhost>2023-02-03 19:34:52 +0100
commit43c83ce9ed561fb0d1de1b439eed1a20792d78b8 (patch)
tree74a7027548e95959990e8e485531f225576d8986 /html.c
parentd49089898f077796eea5fb75c3674c57db399cc1 (diff)
More debug level changes.
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 2d9ebe9..a91ac76 100644
--- a/html.c
+++ b/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)) {
/* 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;
}
@@ -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);
if (!uid || !user_open(&snac, uid)) {
/* 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;
}