Merge pull request #1763 from mempool/wiz/fix-backend-starting-syslog-msg

Change backend start syslog message from DEBUG to NOTICE
This commit is contained in:
wiz 2022-06-01 02:43:25 +09:00 committed by GitHub
commit 4b445b1191
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ class Server {
} }
async startServer(worker = false) { async startServer(worker = false) {
logger.debug(`Starting Mempool Server${worker ? ' (worker)' : ''}... (${backendInfo.getShortCommitHash()})`); logger.notice(`Starting Mempool Server${worker ? ' (worker)' : ''}... (${backendInfo.getShortCommitHash()})`);
this.app this.app
.use((req: Request, res: Response, next: NextFunction) => { .use((req: Request, res: Response, next: NextFunction) => {