Code:
from pyngrok import ngrok
public_url = ngrok.connect(
log_stdout=True, log_file="ngrok.log", log_format="json", log_level="debug", proto="tcp", addr="8080"
)
print(public_url)
while True:
pass
I found this on the internet but it aint working, well its starting the server but its not logging anything, how do i make it log things?
thanks