mm_machine 2.0.4 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +0 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -215,7 +215,6 @@ Index.prototype.update_config_all = async function(searchPath, accurate) {
|
|
|
215
215
|
if (config_file && config_file.hasFile && config_file.hasFile()) {
|
|
216
216
|
// 直接加载这个文件
|
|
217
217
|
await this.load_file(config_file, true);
|
|
218
|
-
$.log.debug(`成功加载配置文件: ${config_file}`);
|
|
219
218
|
}
|
|
220
219
|
|
|
221
220
|
// 同时也检查config_demo.json文件
|
|
@@ -223,7 +222,6 @@ Index.prototype.update_config_all = async function(searchPath, accurate) {
|
|
|
223
222
|
if (config_file2 && config_file2.hasFile && config_file2.hasFile()) {
|
|
224
223
|
// 直接加载这个文件
|
|
225
224
|
await this.load_file(config_file2, true);
|
|
226
|
-
$.log.debug(`成功加载配置文件: ${config_file2}`);
|
|
227
225
|
}
|
|
228
226
|
}
|
|
229
227
|
} catch (err) {
|