From 9839ea5b071586af67ec56d268a80876fa337f37 Mon Sep 17 00:00:00 2001 From: deffcolony <61471128+deffcolony@users.noreply.github.com> Date: Fri, 18 Aug 2023 16:48:23 +0200 Subject: [PATCH] adds green color for url line This will make sure the link is more visible in console --- server.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server.js b/server.js index c3eab2cae..0af4efd4c 100644 --- a/server.js +++ b/server.js @@ -3649,7 +3649,8 @@ const setupTasks = async function () { console.log('Launching...'); if (autorun) open(autorunUrl.toString()); - console.log('SillyTavern is listening on: ' + tavernUrl); + + console.log('\x1b[32mSillyTavern is listening on: ' + tavernUrl + '\x1b[0m'); if (listen) { console.log('\n0.0.0.0 means SillyTavern is listening on all network interfaces (Wi-Fi, LAN, localhost). If you want to limit it only to internal localhost (127.0.0.1), change the setting in config.conf to “listen=false”\n');