Updated Server Message #1013

Updated Server Message #1013
This commit is contained in:
Shahana Farooqui 2022-05-04 12:47:21 -04:00
parent af547f922e
commit 9bb484d3fe
4 changed files with 4 additions and 4 deletions

2
rtl.js
View file

@ -35,7 +35,7 @@ const onError = (error) => {
};
const onListening = () => {
logger.log({ level: 'INFO', fileName: 'RTL', msg: 'Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port });
logger.log({ level: 'INFO', fileName: 'RTL', msg: 'Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port + ' or your proxy configured url' });
};
let server = http.createServer(app.getApp());