Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/beta' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Redbeanw44602 committed Aug 16, 2022
2 parents f1272c4 + 051a3ba commit 2c12792
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ScriptEngine/Main/Loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ void LoadMain_NodeJs() {
std::filesystem::directory_iterator files(LLSE_PLUGINS_LOAD_DIR);
for (auto& i : files) {
if (i.is_regular_file() && EndsWith(i.path().u8string(), LLSE_PLUGINPACK_EXTENSION)) {
logger.info(tr("llse.loader.loadMain.nodejs.installPack.start", i.path().u8string()));
logger.info(tr("llse.loader.loadMain.nodejs.installPack.start",
fmt::arg("path", i.path().u8string())));
if (!NodeJsHelper::deployPluginPack(i.path().u8string())) {
logger.error(tr("llse.loader.loadMain.nodejs.installPack.fail"));
}
Expand Down

0 comments on commit 2c12792

Please sign in to comment.