Skip to content

Commit

Permalink
Merge branch 'master' of github.com:moleculerjs/moleculer-web
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed Nov 12, 2023
2 parents 6f1604f + 9820ae6 commit 5536026
Show file tree
Hide file tree
Showing 3 changed files with 165 additions and 174 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v1
- uses: actions/cache@v2
with:
path: node_modules
key: ${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ module.exports = {
if (req.$route && !req.$route.logging) return;

if (this.settings.logRequest && this.settings.logRequest in this.logger)
this.logger[this.settings.logRequest](`=> ${req.method} ${req.url}`);
this.logger[this.settings.logRequest](`=> ${req.method} ${req.originalUrl}`);
},

/**
Expand Down
Loading

0 comments on commit 5536026

Please sign in to comment.