Merge "Updated auth to accept full paths for credential cache file"
diff --git a/internal/lib/utils.py b/internal/lib/utils.py
index 2f71989..1df3495 100755
--- a/internal/lib/utils.py
+++ b/internal/lib/utils.py
@@ -1021,7 +1021,9 @@
         os.environ[_ENV_DISPLAY]
     except KeyError:
         PrintColorString("Remote terminal can't support VNC. "
-                         "Skipping VNC startup.", TextColors.FAIL)
+                         "Skipping VNC startup. "
+                         "VNC server is listening at 127.0.0.1:{}.".format(port),
+                         TextColors.FAIL)
         return
 
     if IsSupportedPlatform() and not FindExecutable(_VNC_BIN):