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.
Files changed (3) hide show
  1. package/History.md +2122 -0
  2. package/lib/egg.js +2 -0
  3. 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egg",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "publishConfig": {
5
5
  "tag": "next"
6
6
  },