Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
ci: 👷 fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
TBHGodPro committed Feb 27, 2023
1 parent f5ec869 commit 285e358
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Content/Debug.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
},
},
};
Expand Down
4 changes: 2 additions & 2 deletions src/javascript/minecraft.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 285e358

Please sign in to comment.