feat(server): Log postgresql version when boot
This commit is contained in:
parent
0683fa6b97
commit
a8b4df6eae
@ -3,6 +3,7 @@ import * as cluster from 'cluster';
|
|||||||
import * as chalk from 'chalk';
|
import * as chalk from 'chalk';
|
||||||
import * as portscanner from 'portscanner';
|
import * as portscanner from 'portscanner';
|
||||||
import * as isRoot from 'is-root';
|
import * as isRoot from 'is-root';
|
||||||
|
import { getConnection } from 'typeorm';
|
||||||
|
|
||||||
import Logger from '../services/logger';
|
import Logger from '../services/logger';
|
||||||
import loadConfig from '../config/load';
|
import loadConfig from '../config/load';
|
||||||
@ -149,6 +150,8 @@ async function init(): Promise<Config> {
|
|||||||
try {
|
try {
|
||||||
bootLogger.info('Connecting database...');
|
bootLogger.info('Connecting database...');
|
||||||
await initDb();
|
await initDb();
|
||||||
|
const v = await getConnection().query('SHOW server_version').then(x => x[0].server_version)
|
||||||
|
bootLogger.succ(`Connected to database: v${v}`);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
bootLogger.error('Cannot connect to database', null, true);
|
bootLogger.error('Cannot connect to database', null, true);
|
||||||
bootLogger.error(e);
|
bootLogger.error(e);
|
||||||
|
Loading…
Reference in New Issue
Block a user