chore: output error log (#519)

This commit is contained in:
Jonathan Wilke
2024-11-13 20:24:02 +01:00
committed by GitHub
parent d052192c51
commit c322fb2fc8

View File

@@ -156,7 +156,7 @@ export async function getConfig({
}
return configFile;
} catch (e) {
logger.error("Couldn't read your auth config.");
logger.error("Couldn't read your auth config.", e);
process.exit(1);
}
}