mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-21 15:48:04 +01:00
fix: ngrok logging does not use the shared logger module (#5570)
This commit is contained in:
parent
32ee5504ed
commit
e0fc808980
@ -8,7 +8,6 @@
|
|||||||
# See this example for full list of options: https://github.com/ngrok/ngrok-py/blob/main/examples/ngrok-connect-full.py
|
# See this example for full list of options: https://github.com/ngrok/ngrok-py/blob/main/examples/ngrok-connect-full.py
|
||||||
# or the README.md in this directory.
|
# or the README.md in this directory.
|
||||||
|
|
||||||
import logging
|
|
||||||
from modules import shared
|
from modules import shared
|
||||||
|
|
||||||
# Pick up host/port command line arguments
|
# Pick up host/port command line arguments
|
||||||
@ -31,6 +30,6 @@ def ui():
|
|||||||
try:
|
try:
|
||||||
import ngrok
|
import ngrok
|
||||||
tunnel = ngrok.connect(**options)
|
tunnel = ngrok.connect(**options)
|
||||||
logging.info(f"Ingress established at: {tunnel.url()}")
|
shared.logger.info(f"Ingress established at: {tunnel.url()}")
|
||||||
except ModuleNotFoundError:
|
except ModuleNotFoundError:
|
||||||
logging.error("===> ngrok library not found, please run `pip install -r extensions/ngrok/requirements.txt`")
|
shared.logger.error("===> ngrok library not found, please run `pip install -r extensions/ngrok/requirements.txt`")
|
||||||
|
Loading…
Reference in New Issue
Block a user