diff --git a/video2x/interpolator.py b/video2x/interpolator.py
index 99a6c8a..2ad5185 100755
--- a/video2x/interpolator.py
+++ b/video2x/interpolator.py
@@ -56,7 +56,9 @@ class Interpolator(multiprocessing.Process):
def run(self) -> None:
self.running = True
- logger.info(f"Interpolator process {self.name} initiating")
+ logger.opt(colors=True).info(
+ f"Interpolator process {self.name} initiating"
+ )
processor_objects = {}
while self.running:
try:
@@ -112,7 +114,9 @@ class Interpolator(multiprocessing.Process):
logger.exception(e)
break
- logger.info(f"Interpolator process {self.name} terminating")
+ logger.opt(colors=True).info(
+ f"Interpolator process {self.name} terminating"
+ )
return super().run()
def _stop(self, _signal_number, _frame) -> None: