egg 3.5.0 → 3.5.1
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/History.md +2122 -0
- package/lib/egg.js +2 -0
- package/package.json +1 -1
package/lib/egg.js
CHANGED
|
@@ -446,6 +446,8 @@ class EggApplication extends EggCore {
|
|
|
446
446
|
}
|
|
447
447
|
this.coreLogger.error(`check run/${this.type}_timing_${process.pid}.json for more details.`);
|
|
448
448
|
this.emit('startTimeout');
|
|
449
|
+
this.dumpConfig();
|
|
450
|
+
this.dumpTiming();
|
|
449
451
|
}, this.config.workerStartTimeout);
|
|
450
452
|
this.ready(() => clearTimeout(startTimeoutTimer));
|
|
451
453
|
}
|