Open
Description
the space build failed, and can't see the information in the logs of container on the website panel. is there any way to logs it on docker container using command-line terminal?
the content of app.py is below:
`import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()`