diff --git a/src/efibootmgr.service.ts b/src/efibootmgr.service.ts index daaf4be..32025f0 100644 --- a/src/efibootmgr.service.ts +++ b/src/efibootmgr.service.ts @@ -59,6 +59,8 @@ export class EfiBootMgrService { } return outputValues.entries.map((v) => { + logger.debug(`Processing boot entry: ${v}`); + const [bootStr, labelStr] = v.split("* "); if (!bootStr || !labelStr) throw new Error("Invalid output!");