fix(log): 请求日志格式修改

test
jshixiong 1 year ago
parent b6ed14d8bf
commit 9d7794de89

@ -15,7 +15,9 @@ def get_recent_login_info(page_index=1, page_size=10):
total = len(lines)
start = (page_index - 1) * page_size
# start = (page_index - 1) * page_size
# end = start + page_size
start = total - 1 - page_index * page_size
end = start + page_size
for line in lines[start:end]:

Loading…
Cancel
Save