From 63d54819c61754d17300f9b5bee77733bd4dba2d Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Tue, 13 May 2025 23:56:53 -0700 Subject: [PATCH] chore: add running version to logs --- README.md | 2 -- tvapp2/index.js | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37c1dd63..6804c4a4 100644 --- a/README.md +++ b/README.md @@ -796,8 +796,6 @@ docker buildx build \ --pull \ --push \ . - - ```
diff --git a/tvapp2/index.js b/tvapp2/index.js index 6ea71432..ba06b035 100755 --- a/tvapp2/index.js +++ b/tvapp2/index.js @@ -2325,6 +2325,11 @@ const server = http.createServer( ( request, response ) => chalk.blueBright( `` ), chalk.gray( `Server is now running on` ), chalk.blueBright( `` ), chalk.whiteBright.bgBlack( ` ${ envWebIP }:${ envWebPort } ` ), chalk.blueBright( `` ), chalk.whiteBright.bgBlack( ` ${ envIpContainer }:${ envWebPort } ` ) ); + + Log.info( `core`, chalk.yellow( `[initiate]` ), chalk.white( `✅` ), + chalk.blueBright( `` ), chalk.gray( `Running TVApp2 version` ), + chalk.blueBright( `` ), chalk.gray( ` ${ version } ` ), + chalk.blueBright( `` ), chalk.gray( ` ${ envAppRelease } ` ) ); }); })();