Skip to content

Commit

Permalink
Fix logging for load image as video
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaker authored Aug 26, 2021
1 parent b7b4c42 commit e6edd63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/ffmpegInfoParser.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import subprocess as sp
from dataclasses import dataclass
import logging

@dataclass
class VideoInfo:
Expand Down
2 changes: 1 addition & 1 deletion src/ffmpegService.py
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ def loadImageAsVideoWorker():
while 1:
filename,duration,completioncallback = self.loadImageAsVideoRequestQueue.get()
vidInfo = getVideoInfo(filename)
logging.debuug(str(vidInfo))
logging.debug(str(vidInfo))
imageasVideoID+=1

try:
Expand Down

0 comments on commit e6edd63

Please sign in to comment.