FrontEnd angepasst
This commit is contained in:
parent
4561ab98ff
commit
62b88060fc
1 changed files with 2 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
import logging
|
import logging
|
||||||
import asyncio
|
import asyncio
|
||||||
import time
|
import time
|
||||||
|
import traceback
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
from app.class_file_convert_read_out import Process
|
from app.class_file_convert_read_out import Process
|
||||||
from app.class_media_file_stat import Stat
|
from app.class_media_file_stat import Stat
|
||||||
|
|
@ -79,6 +80,7 @@ class Convert:
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
obj.status = 2
|
obj.status = 2
|
||||||
logging.error(f"Fehler in video_convert(): {e}")
|
logging.error(f"Fehler in video_convert(): {e}")
|
||||||
|
logging.error(traceback.format_exc())
|
||||||
finally:
|
finally:
|
||||||
logging.info(f"Prozess {result}({obj.process.returncode}): {obj.source_file_name}")
|
logging.info(f"Prozess {result}({obj.process.returncode}): {obj.source_file_name}")
|
||||||
await self.obj_websocket.send_websocket(self.obj_path.active_path_to_dict())
|
await self.obj_websocket.send_websocket(self.obj_path.active_path_to_dict())
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue