fix: add logs
This commit is contained in:
parent
0485f2d75d
commit
f47c96d2c7
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue