fix server log bug

This commit is contained in:
monoid 2024-04-07 22:29:26 +09:00
parent e0cdf51507
commit eb83e221e4
4 changed files with 6 additions and 8 deletions

View File

@ -103,7 +103,6 @@ async function renderZipImage(ctx: Context, path: string, page: number) {
ctx.body = nodeReadableStream; ctx.body = nodeReadableStream;
ctx.response.length = entry.uncompressedSize; ctx.response.length = entry.uncompressedSize;
// console.log(`${entry.name}'s ${page}:${entry.size}`);
ctx.response.type = entry.filename.split(".").pop() as string; ctx.response.type = entry.filename.split(".").pop() as string;
ctx.status = 200; ctx.status = 200;
ctx.set("Date", new Date().toUTCString()); ctx.set("Date", new Date().toUTCString());

View File

@ -24,7 +24,6 @@ const ContentIDHandler = (controller: DocumentAccessor) => async (ctx: Context,
} }
ctx.body = document; ctx.body = document;
ctx.type = "json"; ctx.type = "json";
console.log(document.additional);
}; };
const ContentTagIDHandler = (controller: DocumentAccessor) => async (ctx: Context, next: Next) => { const ContentTagIDHandler = (controller: DocumentAccessor) => async (ctx: Context, next: Next) => {
const num = Number.parseInt(ctx.params.num); const num = Number.parseInt(ctx.params.num);

View File

@ -98,12 +98,14 @@ class ServerApplication {
if (setting.mode === "development") { if (setting.mode === "development") {
let mm_count = 0; let mm_count = 0;
app.use(async (ctx, next) => { app.use(async (ctx, next) => {
console.log(`==========================${mm_count++}`); console.log(`=== Request No ${mm_count++} \t===`);
const ip = ctx.get("X-Real-IP") ?? ctx.ip; const ip = ctx.get("X-Real-IP").length > 0 ? ctx.get("X-Real-IP") : ctx.ip;
const fromClient = ctx.state.user.username === "" ? ip : ctx.state.user.username; const fromClient = ctx.state.user.username === "" ? ip : ctx.state.user.username;
console.log(`${fromClient} : ${ctx.method} ${ctx.url}`); console.log(`${mm_count} ${fromClient} : ${ctx.method} ${ctx.url}`);
const start = Date.now();
await next(); await next();
// console.log(`404`); const end = Date.now();
console.log(`${mm_count} ${fromClient} : ${ctx.method} ${ctx.url} ${ctx.status} ${end - start}ms`);
}); });
} }
app.use(router.routes()); app.use(router.routes());

View File

@ -39,9 +39,7 @@ export async function readZip(path: string): Promise<{
return { reader, handle: fd }; return { reader, handle: fd };
} }
export async function entriesByNaturalOrder(zip: ZipReader<FileHandle>) { export async function entriesByNaturalOrder(zip: ZipReader<FileHandle>) {
// console.log(zip);
const entries = await zip.getEntries(); const entries = await zip.getEntries();
// console.log(entries.map((v) => v.filename));
const ret = orderBy(entries, (v) => v.filename); const ret = orderBy(entries, (v) => v.filename);
return ret; return ret;
} }