diff options
| author | 2024-05-06 09:04:46 +0200 | |
|---|---|---|
| committer | 2024-05-06 09:04:46 +0200 | |
| commit | 7df69f8f1288290a8b948f33ac2368aa456b999e (patch) | |
| tree | 074ce1a8cff6cac65be2125ff7d11fc9852a53b1 | |
| parent | More logging! (diff) | |
| download | snac2-7df69f8f1288290a8b948f33ac2368aa456b999e.tar.gz snac2-7df69f8f1288290a8b948f33ac2368aa456b999e.tar.xz snac2-7df69f8f1288290a8b948f33ac2368aa456b999e.zip | |
Logging, logging, logging everywhere.
| -rw-r--r-- | mastoapi.c | 5 |
1 files changed, 2 insertions, 3 deletions
| @@ -1467,9 +1467,8 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, | |||
| 1467 | if (limit == 0) | 1467 | if (limit == 0) |
| 1468 | limit = 20; | 1468 | limit = 20; |
| 1469 | 1469 | ||
| 1470 | snac_debug(&snac1, 1, | 1470 | xs *ja = xs_json_dumps(args, 0); |
| 1471 | xs_fmt("/v1/timelines/home: max_id=%s since_id=%s min_id=%s limit=%s", | 1471 | snac_debug(&snac1, 1, xs_fmt("/v1/timelines/home: args='%s'", ja)); |
| 1472 | max_id, since_id, min_id, limit_s)); | ||
| 1473 | 1472 | ||
| 1474 | xs *timeline = timeline_simple_list(&snac1, "private", 0, 2048); | 1473 | xs *timeline = timeline_simple_list(&snac1, "private", 0, 2048); |
| 1475 | 1474 | ||