Changed frame tracker logging level to debug
This commit is contained in:
parent
cf3adf2101
commit
9b4031ff12
1 changed files with 2 additions and 2 deletions
|
|
@ -34,12 +34,12 @@ class FrameStream(io.BytesIO):
|
|||
|
||||
def start_tracking(self):
|
||||
if not self.tracking:
|
||||
logging.info("Started tracking frame data")
|
||||
logging.debug("Started tracking frame data")
|
||||
self.tracking = True
|
||||
|
||||
def stop_tracking(self):
|
||||
if self.tracking:
|
||||
logging.info("Stopped tracking frame data")
|
||||
logging.debug("Stopped tracking frame data")
|
||||
self.tracking = False
|
||||
|
||||
def reset_tracking(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue