Increase error stack logging to info for autodl.

This commit is contained in:
Nerivec
2024-11-03 03:09:05 +01:00
parent 1e0a9ce7ff
commit 0ee835bb42

View File

@@ -46,7 +46,7 @@ export async function runAutodl(github: Octokit, core: typeof CoreApi, context:
await download();
} catch (error) {
core.error((error as Error).message);
core.debug((error as Error).stack!);
core.info((error as Error).stack!);
}
core.endGroup();