Update web-page handler: add more detailed error logs
This commit is contained in:
parent
3d044ee79e
commit
49d6781170
@ -28,7 +28,7 @@ export default async function handleWebPages({ req, }) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
log.error(`Error Handling Web Page: ${error.message}`);
|
log.error(`Error Handling Web Page: ${error.message}`, error);
|
||||||
const componentRes = await grabPageErrorComponent({
|
const componentRes = await grabPageErrorComponent({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|||||||
2
dist/index.d.ts
vendored
2
dist/index.d.ts
vendored
@ -5,7 +5,7 @@ declare const bunext: {
|
|||||||
bunextLog: {
|
bunextLog: {
|
||||||
info: (msg: string, log?: any) => void;
|
info: (msg: string, log?: any) => void;
|
||||||
success: (msg: string, log?: any) => void;
|
success: (msg: string, log?: any) => void;
|
||||||
error: (msg: string | Error) => void;
|
error: (msg: string | Error, log?: any) => void;
|
||||||
warn: (msg: string) => void;
|
warn: (msg: string) => void;
|
||||||
build: (msg: string) => void;
|
build: (msg: string) => void;
|
||||||
watch: (msg: string) => void;
|
watch: (msg: string) => void;
|
||||||
|
|||||||
2
dist/utils/log.d.ts
vendored
2
dist/utils/log.d.ts
vendored
@ -1,7 +1,7 @@
|
|||||||
export declare const log: {
|
export declare const log: {
|
||||||
info: (msg: string, log?: any) => void;
|
info: (msg: string, log?: any) => void;
|
||||||
success: (msg: string, log?: any) => void;
|
success: (msg: string, log?: any) => void;
|
||||||
error: (msg: string | Error) => void;
|
error: (msg: string | Error, log?: any) => void;
|
||||||
warn: (msg: string) => void;
|
warn: (msg: string) => void;
|
||||||
build: (msg: string) => void;
|
build: (msg: string) => void;
|
||||||
watch: (msg: string) => void;
|
watch: (msg: string) => void;
|
||||||
|
|||||||
2
dist/utils/log.js
vendored
2
dist/utils/log.js
vendored
@ -15,7 +15,7 @@ export const log = {
|
|||||||
success: (msg, log) => {
|
success: (msg, log) => {
|
||||||
console.log(`${prefix.success} ${chalk.green(msg)}`, log || "");
|
console.log(`${prefix.success} ${chalk.green(msg)}`, log || "");
|
||||||
},
|
},
|
||||||
error: (msg) => console.error(`${prefix.error} ${chalk.red(String(msg))}`),
|
error: (msg, log) => console.error(`${prefix.error} ${chalk.red(String(msg))}`, log || ""),
|
||||||
warn: (msg) => console.warn(`${prefix.warn} ${chalk.yellow(msg)}`),
|
warn: (msg) => console.warn(`${prefix.warn} ${chalk.yellow(msg)}`),
|
||||||
build: (msg) => console.log(`${prefix.build} ${chalk.magenta(msg)}`),
|
build: (msg) => console.log(`${prefix.build} ${chalk.magenta(msg)}`),
|
||||||
watch: (msg) => console.log(`${prefix.watch} ${chalk.blue(msg)}`),
|
watch: (msg) => console.log(`${prefix.watch} ${chalk.blue(msg)}`),
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"name": "@moduletrace/bunext",
|
"name": "@moduletrace/bunext",
|
||||||
"module": "index.ts",
|
"module": "index.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.0.11",
|
"version": "1.0.12",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
"exports": {
|
"exports": {
|
||||||
|
|||||||
@ -39,7 +39,7 @@ export default async function handleWebPages({
|
|||||||
...componentRes,
|
...componentRes,
|
||||||
});
|
});
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
log.error(`Error Handling Web Page: ${error.message}`);
|
log.error(`Error Handling Web Page: ${error.message}`, error);
|
||||||
|
|
||||||
const componentRes = await grabPageErrorComponent({
|
const componentRes = await grabPageErrorComponent({
|
||||||
error,
|
error,
|
||||||
|
|||||||
@ -17,8 +17,8 @@ export const log = {
|
|||||||
success: (msg: string, log?: any) => {
|
success: (msg: string, log?: any) => {
|
||||||
console.log(`${prefix.success} ${chalk.green(msg)}`, log || "");
|
console.log(`${prefix.success} ${chalk.green(msg)}`, log || "");
|
||||||
},
|
},
|
||||||
error: (msg: string | Error) =>
|
error: (msg: string | Error, log?: any) =>
|
||||||
console.error(`${prefix.error} ${chalk.red(String(msg))}`),
|
console.error(`${prefix.error} ${chalk.red(String(msg))}`, log || ""),
|
||||||
warn: (msg: string) => console.warn(`${prefix.warn} ${chalk.yellow(msg)}`),
|
warn: (msg: string) => console.warn(`${prefix.warn} ${chalk.yellow(msg)}`),
|
||||||
build: (msg: string) =>
|
build: (msg: string) =>
|
||||||
console.log(`${prefix.build} ${chalk.magenta(msg)}`),
|
console.log(`${prefix.build} ${chalk.magenta(msg)}`),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user