diff options
author | default <nobody@localhost> | 2023-11-08 18:15:51 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-11-08 18:15:51 +0100 |
commit | b199f223e41a56c9c8e6dcf353cb64123d378879 (patch) | |
tree | a5bfa0f2f1f41525e5ab5cc006812d843b351bad /mastoapi.c | |
parent | 42629c9742beda51675cc8a9fef4b9f349ff9dd7 (diff) |
Tag indexes are also purged.
Diffstat (limited to 'mastoapi.c')
-rw-r--r-- | mastoapi.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1028,13 +1028,13 @@ int process_auth_token(snac *snac, const xs_dict *req) /* this counts as a 'login' */ lastlog_write(snac, "mastoapi"); - srv_debug(2, xs_fmt("mastoapi auth: valid token for user %s", uid)); + srv_debug(2, xs_fmt("mastoapi auth: valid token for user '%s'", uid)); } else - srv_log(xs_fmt("mastoapi auth: corrupted token %s", tokid)); + srv_log(xs_fmt("mastoapi auth: corrupted token '%s'", tokid)); } else - srv_log(xs_fmt("mastoapi auth: invalid token %s", tokid)); + srv_log(xs_fmt("mastoapi auth: invalid token '%s'", tokid)); } return logged_in; |