Initial commit
This commit is contained in:
12
src/helpers/error.ts
Normal file
12
src/helpers/error.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { ErrorHandler } from "grammy";
|
||||
import type { Context } from "#root/context.js";
|
||||
import { getUpdateInfo } from "./logging.js";
|
||||
|
||||
export const errorHandler: ErrorHandler<Context> = (error) => {
|
||||
const { ctx } = error;
|
||||
|
||||
ctx.logger.error({
|
||||
err: error.error,
|
||||
update: getUpdateInfo(ctx),
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user