Add error logging while updateing aps license (#8839)

This commit is contained in:
MichalKinas
2023-08-22 14:19:21 +02:00
committed by GitHub
parent 29ec2fcc96
commit 9a349f27d9

View File

@@ -238,7 +238,7 @@ async function updateLicense() {
logger.info(`Aps License uploaded!`); logger.info(`Aps License uploaded!`);
return true; return true;
} catch (error) { } catch (error) {
logger.error(`Aps License failed!` ); logger.error(`Aps License failed!`, error.message);
return false; return false;
} }
} }