move errors to fit in logger.error

This commit is contained in:
creations 2025-02-27 13:32:51 -05:00
parent 447dca754b
commit 9295f90741
Signed by: creations
GPG key ID: 8F553AA4320FC711
4 changed files with 16 additions and 9 deletions

View file

@ -11,7 +11,6 @@ async function main(): Promise<void> {
}
main().catch((error: Error) => {
logger.error("Error initializing the server:");
logger.error(error as Error);
logger.error(["Error initializing the server:", error]);
process.exit(1);
});