forked from mirrors/probot
feat: log Node.js version at startup (#1346)
Co-authored-by: Gregor Martynus <gregor@martynus.net>
This commit is contained in:
parent
235e308e35
commit
86b0408f13
|
@ -314,7 +314,9 @@ export class Probot {
|
|||
}
|
||||
|
||||
public start() {
|
||||
this.log.info(`Running Probot v${this.version}`);
|
||||
this.log.info(
|
||||
`Running Probot v${this.version} (Node.js: v${process.version})`
|
||||
);
|
||||
const port = this.options.port || 3000;
|
||||
const { host } = this.options;
|
||||
const printableHost = host ?? "localhost";
|
||||
|
|
Loading…
Reference in New Issue