millas 0.2.27 → 0.2.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "millas",
3
- "version": "0.2.27",
3
+ "version": "0.2.28",
4
4
  "description": "A modern batteries-included backend framework for Node.js — built on Express, inspired by Laravel, Django, and FastAPI",
5
5
  "main": "src/index.js",
6
6
  "exports": {
@@ -176,7 +176,9 @@ class Application {
176
176
  || 3000;
177
177
  const _host = host || 'localhost';
178
178
 
179
+
179
180
  await this._adapter.listen(_port, _host);
181
+ console.log(_host,_port)
180
182
 
181
183
  if (process.env.APP_ENV === "development" && process.env.MILLAS_START_UP && !process.env.MILLERS_NODE_ENV) {
182
184
  this._printStartupLog(_host, _port);