diff --git a/src/components/Content/Debug.vue b/src/components/Content/Debug.vue index edae54c..e19501c 100644 --- a/src/components/Content/Debug.vue +++ b/src/components/Content/Debug.vue @@ -70,7 +70,7 @@ export default { if (value !== undefined) data[name] = value; else delete data[name]; await writeFile(this.settingsFile, JSON.stringify(data), 'utf-8'); - logger.log(`Deleted "${name}" Property of Settings`); + logger.info(`Deleted "${name}" Property of Settings`); }, }, }; diff --git a/src/javascript/minecraft.js b/src/javascript/minecraft.js index 1a1c202..235cb7f 100644 --- a/src/javascript/minecraft.js +++ b/src/javascript/minecraft.js @@ -407,8 +407,8 @@ export async function checkNatives(metadata) { }); await rm(join(constants.DOTLUNARCLIENT, 'offline', 'multiver', 'natives')) - .then(() => logger.log('Deleted Natives Directory')) - .catch(() => logger.log('Natives Directory does not Exist')); + .then(() => logger.info('Deleted Natives Directory')) + .catch(() => logger.info('Natives Directory does not Exist')); const artifact = metadata.launchTypeData.artifacts.find( (artifact) => artifact.type === 'NATIVES'