Skip to content

Commit

Permalink
Merge pull request #15509 from Cpaczek/add-dialect-to-start-up-log
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoward1994 committed Jan 23, 2023
2 parents a8c0798 + 2b87767 commit 62e3f93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/strapi/lib/utils/startup-logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ module.exports = (app) => {
[chalk.blue('Environment'), app.config.environment],
[chalk.blue('Process PID'), process.pid],
[chalk.blue('Version'), `${app.config.info.strapi} (node ${process.version})`],
[chalk.blue('Edition'), isEE ? 'Enterprise' : 'Community']
[chalk.blue('Edition'), isEE ? 'Enterprise' : 'Community'],
[chalk.blue('Database'), app.db.dialect.client]
);

console.log(infoTable.toString());
Expand Down

0 comments on commit 62e3f93

Please sign in to comment.