Change backend start syslog message from DEBUG to NOTICE

This commit is contained in:
wiz 2022-06-01 01:09:08 +09:00
parent 6a3df95d4c
commit 4ccd786fe9
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

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