fix: add logs

This commit is contained in:
root 2025-07-10 14:27:47 +08:00
parent 0485f2d75d
commit f47c96d2c7
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ print("=== AI Video Generator Starting ===")
print(f"Python version: {sys.version}")
print(f"Working directory: {os.getcwd()}")
print(f"Script path: {__file__}")
print(f"Arguments: {sys.argv}")
try:
print("Arguments:", str(sys.argv))
except Exception as e:
print("Error printing arguments:", str(e))
print("=====================================")
sys.stdout.flush()