Skip to content

Commit 86b0408

Browse files
shaftoegr2m
andauthored
feat: log Node.js version at startup (probot#1346)
Co-authored-by: Gregor Martynus <gregor@martynus.net>
1 parent 235e308 commit 86b0408

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,9 @@ export class Probot {
314314
}
315315

316316
public start() {
317-
this.log.info(`Running Probot v${this.version}`);
317+
this.log.info(
318+
`Running Probot v${this.version} (Node.js: v${process.version})`
319+
);
318320
const port = this.options.port || 3000;
319321
const { host } = this.options;
320322
const printableHost = host ?? "localhost";

0 commit comments

Comments
 (0)