fix: log bootup actions

This commit is contained in:
Derrick Hammer 2023-10-13 02:51:11 -04:00
parent 3aa49eb521
commit 0b8dccb211
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -118,6 +118,7 @@ async function boot(lume: LumeContextType) {
async function bootup() {
for (const entry of Object.entries(BOOT_FUNCTIONS)) {
console.log(entry[1].toString());
await entry[1]();
}
}