File size: 232 Bytes
1cb6f0d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import traceback

print("=== Starting server ===")

try:
    from app import app
    print("Loaded app successfully.")
except Exception as e:
    print("=== ERROR DURING IMPORT ===")
    traceback.print_exc()
    raise e